Help for this page

Select Code to Download


  1. or download this
    my $outfile = shift;
    open OUT,">".$outfile or die "Could not open $outfile:$!\n";
    print OUT $_ while <>;
    
  2. or download this
    perl -e 'open OUT,">".shift;print OUT <>' output *.txt