Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I use sed to delete the whole line in a text file that contains a specific string?

Thanks. (I'm a newbie to sed)

share|improve this question

3 Answers

up vote 69 down vote accepted
sed '/pattern to match/d' ./infile
share|improve this answer
1  
Thanks, but it doesn't seem to erase it from the file but just print out the text file contents without that string. – A Clockwork Orange Mar 23 '11 at 20:03
13  
@A Clockwork: yes, you need to redirect the output either to a new file with something like sed '/pattern to match/d' ./infile > ./newfile or if you want to do an in-place edit then you can add the -i flag to sed as in sed -i '/pattern to match/d' ./infile. Note that the -i flag requires GNU sed and is not portable – SiegeX Mar 23 '11 at 20:16
How do I know what version of sed I have? GNU or non GNU? – A Clockwork Orange Mar 23 '11 at 20:39
13  
@A Clockwork: sed --version. BTW, whatever you do, do NOT try to redirect the old filename to itself, you will end up deleting the entire contents of your file. – SiegeX Mar 23 '11 at 20:40
1  
For some flavor's of sed; sed's "-i" flag required an extension to be provided. (e.g. sed -i.backup '/pattern to match/d' ./infile) That got me across with in-place edits. – avelis Jan 31 at 21:45
show 3 more comments

there are many other ways to delete lines with specific string besides sed

awk

awk '!/pattern/' file > temp && mv temp file

Ruby(1.9+)

ruby -i.bak -ne 'print if not /test/' file

Shell(bash3.2+)

while read -r line
do
  [[ ! $s =~ pattern ]] && echo "$line"
done <file > o 
mv o file

GNU grep

grep -v "pattern" file > temp && mv temp file

and of course sed (printing the inverse is faster than actual deletion. )

sed -n '/pattern/!p' file 
share|improve this answer
+1 for completeness! – Adri C.S. Apr 5 at 16:31

You can use sed to replace lines in place in a file, however it seems to be much slower than grepping for the inverse into a second file and then moving the second file over the original.

e.g.

sed -i '/pattern/d' filename      

or

grep -v "pattern" filename > filename2; mv filename2 filename

The first command takes 3 times longer on my machine anyway.

share|improve this answer
Voting up your answer too, just because you tried a performance comparison! – anuragw Apr 12 at 7:11
+1 for offering option to overwrite current file with the grep line. – Rhyuk May 6 at 20:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.