Help for this page
#!perl # called as catFiles.pl input1 input2 > output exec( qw(perl -MExtUtils::Command -e cat), @ARGV );
#!perl -w ... my ($output, @inputs) = @ARGV; exec("perl -MExtUtils::Command -e cat @inputs > $output");