#!/usr/bin/perl -w
my @fixed_args = @ARGV;
@ARGV = ();
my @args = <>;
for (@args) { chomp; }
system(@fixed_args, @args);
