in reply to Seek and delete
This deletes the 1st 5 lines of a file:
sed 1,5d file.txt [download]
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 [download]