What GNU/Linux command-line tool would I use for performing a search and replace on a file? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T01:57:25Z http://stackoverflow.com/feeds/question/155934 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace 7 What GNU/Linux command-line tool would I use for performing a search and replace on a file? Ben Lever http://stackoverflow.com/users/2045 2008-10-01T02:02:55Z 2009-11-20T16:48:15Z <p>What GNU/Linux command-line tool would I use for performing a search and replace on a file? </p> <p>Can the search text, and replacement, be specified in a regex format?</p> http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155939#155939 15 Answer by Michael Cramer for What GNU/Linux command-line tool would I use for performing a search and replace on a file? Michael Cramer http://stackoverflow.com/users/7429 2008-10-01T02:04:16Z 2008-10-01T02:18:25Z <p>Perl was invented for this:</p> <pre><code>perl -pi -e 's/foo/bar/g;' *.txt </code></pre> <p>Any normal s/// pattern in those single quotes. You can keep a backup with something like this:</p> <pre><code>perl -pi.bak -e 's/foo/bar/g;' *.txt </code></pre> <p>Or pipeline:</p> <pre><code>cat file.txt | perl -ne 's/foo/bar/g;' | less </code></pre> <p>But that's really more sed's job.</p> http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155944#155944 5 Answer by cori for What GNU/Linux command-line tool would I use for performing a search and replace on a file? cori http://stackoverflow.com/users/8151 2008-10-01T02:04:44Z 2008-10-01T02:04:44Z <p><a href="http://www.grymoire.com/Unix/Sed.html" rel="nofollow">sed</a>, the stream editor, and yes, it uses regex.</p> http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155956#155956 26 Answer by Cristian Ciupitu for What GNU/Linux command-line tool would I use for performing a search and replace on a file? Cristian Ciupitu http://stackoverflow.com/users/12892 2008-10-01T02:08:34Z 2009-11-20T16:48:15Z <p><code>$ sed 's/a.*b/xyz/g;' old_file &gt; new_file</code></p> <p>GNU sed (which you probably have) is even more versatile:</p> <p><code>$ sed -r --in-place 's/a(.*)b/x\1y/g;' your_file</code></p> <p>Here is a brief explanation of those options:</p> <blockquote> <p><strong>-i[SUFFIX], --in-place[=SUFFIX]</strong> edit files in place (makes backup if extension supplied)</p> <p><strong>-r, --regexp-extended</strong> use extended regular expressions in the script.</p> </blockquote> <p>If you want to learn more about sed, <a href="http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/155944#155944">Cori</a> has suggested <a href="http://www.grymoire.com/Unix/Sed.html" rel="nofollow">this tutorial</a>.</p> http://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace/159354#159354 1 Answer by Brian Carper for What GNU/Linux command-line tool would I use for performing a search and replace on a file? Brian Carper http://stackoverflow.com/users/23070 2008-10-01T19:41:44Z 2008-10-01T19:41:44Z <p>Consider Ruby as an alternative to Perl. It stole most of Perl's one-liner commandline args (<code>-i</code>, <code>-p</code>, <code>-l</code>, <code>-e</code>, <code>-n</code>) and auto-sets <code>$_</code> for you like Perl does and has plenty of regex goodness. Additionally Ruby's syntax may be more comfortable and easier to read or write than Perl's or sed's. (Or not, depending on your tastes.)</p> <p><code>ruby -pi.bak -e '$_.gsub!(/foo|bar/){|x| x.upcase}' *.txt</code></p> <p>vs.</p> <p><code>perl -pi.bak -e 's/(foo|bar)/\U\1/g' *.txt</code></p> <p>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.</p>