Help for this page

Select Code to Download


  1. or download this
    foreach my $file (@filenames) {
        open (INFILE, "$file") || die ("Can't open file $file$!");
    ...
        close (INFILE);
       print OUTFILE1 @all;
    }
    
  2. or download this
    foreach my $file (@filenames) {
        open (INFILE, "$file") || die ("Can't open file $file$!");
    ...
        close (INFILE);
    }