How to delete from a text file, all lines that contain a specific string?

How would I use sed to delete all lines in a text file that contain a specific string? 20 20 To remove the line and print the output to standard out: sed ‘/pattern to match/d’ ./infile To directly modify the file – does not work with BSD sed: sed -i ‘/pattern to match/d’ ./infile Same, … Read more