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


in reply to Reading lines from a specific location in a text file.

Unless you know the exact position of the begin of your wanted data before you open the text file, you must read all the lines of your file, and ignore those from the first to the line you recognize as the end of the heading.

I hope that your header is much less than your data... ;-)