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.com2010-03-19T01:57:25Zhttp://stackoverflow.com/feeds/question/155934http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155934/what-gnu-linux-command-line-tool-would-i-use-for-performing-a-search-and-replace7What GNU/Linux command-line tool would I use for performing a search and replace on a file?Ben Leverhttp://stackoverflow.com/users/20452008-10-01T02:02:55Z2009-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#15593915Answer by Michael Cramer for What GNU/Linux command-line tool would I use for performing a search and replace on a file?Michael Cramerhttp://stackoverflow.com/users/74292008-10-01T02:04:16Z2008-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#1559445Answer by cori for What GNU/Linux command-line tool would I use for performing a search and replace on a file?corihttp://stackoverflow.com/users/81512008-10-01T02:04:44Z2008-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#15595626Answer by Cristian Ciupitu for What GNU/Linux command-line tool would I use for performing a search and replace on a file?Cristian Ciupituhttp://stackoverflow.com/users/128922008-10-01T02:08:34Z2009-11-20T16:48:15Z<p><code>$ sed 's/a.*b/xyz/g;' old_file > 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#1593541Answer by Brian Carper for What GNU/Linux command-line tool would I use for performing a search and replace on a file?Brian Carperhttp://stackoverflow.com/users/230702008-10-01T19:41:44Z2008-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>