How do I delete all lines in a file starting from after a matching line?

If you don’t want to print the matched line (or any following lines):

sed -n '/The second line/q;p' inputfile

This says “when you reach the line that matches the pattern quit, otherwise print each line”. The -n option prevents implicit printing and the p command is required to explicitly print lines.

or

sed '/The second line/,$d' inputfile

This says “delete all lines from the output starting at the matched line and continuing to the end of the file”.

but the first one is faster. However it will quit processing completely so if you have multiple files as arguments, the ones after the first matching file won’t be processed. In this case, the delete form is better.

If you do want to print the matched line, but not any following lines:

sed '/The second line/q' inputfile

This says “print all lines and quit when the matched line is reached” (the -n option (no implicit print) is not used).

See man sed for additional information.

Leave a Comment