in reply to How to work on a large Data file line by line
open FOO, "<my_hug_file.dat"; while (<FOO>) { # reads one line of the file into $_ # do something } close FOO;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: How to work on a large Data file line by line
by tubaandy (Deacon) on Jul 08, 2008 at 16:03 UTC |