in reply to Re^2: processing huge files
in thread processing huge files
file.txt
test.pl# header 1 2 3 4 5 6
Result is:use Tie::File; tie @f, 'Tie::File', "file.txt" or die $!; foreach (@f[1..$#f]) { print $_, "\n"; }
1 2 3 4 5 6
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: processing huge files
by geektron (Curate) on Aug 02, 2005 at 21:44 UTC | |
by izut (Chaplain) on Aug 02, 2005 at 22:21 UTC |