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)

Rate this FAQ

0 (0 Votes)

Tags