What GNU/Linux command-line tool would I use for performing a search and replace on a file?
Can the search text, and replacement, be specified in a regex format?
|
|
|
|
|
|
|
GNU sed (which you probably have) is even more versatile:
Here is a brief explanation of those options:
If you want to learn more about sed, Cori has suggested this tutorial. |
||||||
|
|
|
Consider Ruby as an alternative to Perl. It stole most of Perl's one-liner commandline args (
vs.
In many cases when dealing with one-liners, performance isn't enough of an issue to care whether you use lightweight sed or heavyweight Perl or heaveier-weight Ruby. Use whatever is easiest to write. |
||
|
|
|
|
sed, the stream editor, and yes, it uses regex. |
||
|
|
|
|
Perl was invented for this:
Any normal s/// pattern in those single quotes. You can keep a backup with something like this:
Or pipeline:
But that's really more sed's job. |
|||
|
|