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.
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.
|
|
|
This should do it:
it will replace all occurrences of "deletethis" with "" (nothing) in all files ( 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
|
|||||||||||||
|