Help for this page

Select Code to Download


  1. or download this
    use File::ReadBackwards;
    tie *BW, 'File::ReadBackwards', 'log_file' or
    ...
    while( <BW> ) {
        print ;
    }
    
  2. or download this
    use Tie::File;
    tie my @array, 'Tie::File', 'log_file' or 
    ...
        $_ = -$_;
        print $array[$_];
    }