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)
|
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) |
|||
|
|
|
|||||||||||||||||||
|
|
there are many other ways to delete lines with specific string besides awk
Ruby(1.9+)
Shell(bash3.2+)
GNU grep
and of course
|
|||
|
|
|
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.
or
The first command takes 3 times longer on my machine anyway. |
||||