Help for this page

Select Code to Download


  1. or download this
    foreach my $file (<*.txt>) {
       open  ADDTO, $file or die "Couldn't open $file for append.\n";
       print ADDTO  $txt;
       close ADDTO;
    }