How do I remove all lines from a file up to a keyword?

To remove all lines up to and including a keyword from a file simply use sed as follows:

sed '1,/keyword/d' infile > outfile

(replacing keyword/infile/outfile with the relevant data)

You cannot comment on this entry