- or download this
use strict;
use warnings;
- or download this
open $USER1, '<', $userfile1 or die "Couldn't open file: $userfile1 -
+$!";
...
while(<$USER1>) { ...
- or download this
open $OUT, '>', "CONCATENATED_FILES";
...
open $USER1, '<', $userfile1;
- or download this
use autodie;
- or download this
use strict;
use warnings;
...
last if !defined $file1[$i] or !defined $file2[$i];
print "$file1[$i]\t$file2[$i]\n";
}