- or download this
open(FILE,'/path/to/file');
print while (<FILE>);
...
open(FILE2,'/path/to/file2');
print while (<FILE2>);
close(FILE2);
- or download this
#!/usr/bin/perl -w
use strict;
...
open(FILE2,'/path/to/file2') || die $!;
print while (<FILE2>);
close(FILE2);
- or download this
#!/usr/bin/perl -w
use strict;
...
open(FILE2,'/path/to/file2');
print while (<FILE2>);
close(FILE2);