http://www.perlmonks.org?node_id=736640


in reply to Re^2: Algorithm To Select Lines Based On Attributes
in thread Algorithm To Select Lines Based On Attributes

I need to know how some information at the bottom of the file before I decide which rule set to use

Maybe you can use File::ReadBackwards to find the information you need, then jump back to the start of the file and read forwards. If memory isn't an issue, then it may not matter, but anytime I see a file that large being slurped for a linear scan, I wonder if it could be done line by line instead.

-xdg

Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.