in reply to Re: file handling
in thread file handling
use IO::File; my $fh = IO::File->new( 'foobar.txt', 'r' ); while ( my $line = $fh->readline ) { print $line if $fh->input_line_number > 3; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: file handling
by toolic (Bishop) on Jul 09, 2008 at 18:10 UTC | |
by Your Mother (Archbishop) on Jul 09, 2008 at 20:11 UTC | |
by ikegami (Patriarch) on Jul 10, 2008 at 08:36 UTC |