Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to delete a line containing a specific string from the file.How can i do this without using awk.I tried to use sed but I can not achieve.

share|improve this question

2 Answers

This should do it:

sed -e s/deletethis//g -i *
sed -e "s/deletethis//g" -i.backup *
sed -e "s/deletethis//g" -i .backup *

it will replace all occurrences of "deletethis" with "" (nothing) in all files (*), editing them in place.

In the second form the pattern can be edited a little safer, and it makes backups of any modified files, by suffixing them with ".backup".

The third form is the way some versions of sed like it. (e.g. Mac OS X)

man sed for more information.

share|improve this answer
I think it is usually a better idea to quote the expression and in addition I'd like to point out the -i.bak syntax where sed creates a backup file with the extension given. I.e. could be -i.backup, too ... – 0xC0000022L Apr 7 '11 at 16:40
@STATUS you're right, some versions of sed actually need the suffix. – mvds Apr 7 '11 at 16:42
1  
This does not work.This deletes string.I want to delete line that contains this string – virtue Apr 7 '11 at 16:59
2  
It does work. It answers your question. You could use grep -v if you want to simply drop lines containing a certain string. – mvds Apr 7 '11 at 17:23
sed -i '/pattern/d' file

Use 'd' to delete a line.

share|improve this answer

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.