- or download this
open(FILE, "file") or die "Cannot open file for reading: $!\n"; - or download this
print FILE $file[$n]; - or download this
foreach (@file) {
print FILE $_;
}
- or download this
print FILE <<EOT;
add whatever here
to end of txt.
EOT
- or download this
#!/usr/bin/perl -w
use strict;
...
close(FILE);