in reply to Is there a way to read a file backwards?
From the docs:
$bw = File::ReadBackwards->new( 'log_file' ) or die "can't read 'log_file' $!" ; while( defined( $log_line = $bw->readline ) ) { print $log_line ; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Is there a way to read a file backwards?
by Anonymous Monk on Jul 31, 2000 at 08:11 UTC | |
by Adam (Vicar) on Jul 31, 2000 at 20:34 UTC |