in reply to Seek and delete

If you are just doing quick and dirty stuff on *nix, there's always sed.

This deletes the 1st 5 lines of a file:

sed 1,5d file.txt

This deletes the all lines of a file up until the line including the string "end_of_header" (inclusive):

sed 1,/end_of_header/d file.txt