[bash] Escape a string for sed search pattern - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:07:56Zhttp://stackoverflow.com/feeds/question/407523http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern2[bash] Escape a string for sed search patternAlexander Gladysh2009-01-02T17:44:15Z2009-01-02T19:03:02Z
<p>In my <code>bash</code> script I have an external (received from user) string, which I should use in <code>sed</code> pattern.</p>
<pre><code>REPLACE="<funny characters here>"
sed "s/KEYWORD/$REPLACE/g"
</code></pre>
<p>How can I escape the <code>$REPLACE</code> string so it would be safely accepted by <code>sed</code> as a literal replacement?</p>
<p><strong>NOTE:</strong> The <code>KEYWORD</code> is a dumb substring with no matches etc. It is not supplied by user.</p>
http://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern/407563#4075630Answer by Alex for [bash] Escape a string for sed search patternAlex2009-01-02T17:58:37Z2009-01-02T17:58:37Z<p>Here is an example of an AWK I used a while ago. It is an AWK that prints new AWKS. AWK and SED being similar it may be a good template.</p>
<pre><code>ls | awk '{ print "awk " "'"'"'" " {print $1,$2,$3} " "'"'"'" " " $1 ".old_ext > " $1 ".new_ext" }' > for_the_birds
</code></pre>
<p>It looks excessive, but somehow that combination of quotes works to keep the ' printed as literals. Then if I remember correctly the vaiables are just surrounded with quotes like this: "$1". Try it, let me know how it works with SED.</p>
http://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern/407649#4076491Answer by Ben Blank for [bash] Escape a string for sed search patternBen Blank2009-01-02T18:31:15Z2009-01-02T18:31:15Z<p>The only three literal characters which are treated specially in the replace clause are <code>/</code> (to close the clause), <code>\</code> (to escape characters, backreference, &c.), and <code>&</code> (to include the match in the replacement). Therefore, all you need to do is escape those three characters:</p>
<pre><code>sed "s/KEYWORD/$(echo $REPLACE | sed -e 's/\\/\\\\/g' -e 's/\//\\\//g' -e 's/&/\\\&/g')/g"
</code></pre>
<p>Example:</p>
<pre><code>$ export REPLACE="'\"|\\/><&!"
$ echo fooKEYWORDbar | sed "s/KEYWORD/$(echo $REPLACE | sed -e 's/\\/\\\\/g' -e 's/\//\\\//g' -e 's/&/\\\&/g')/g"
foo'"|\/><&!bar
</code></pre>
http://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern/407730#4077301Answer by PEZ for [bash] Escape a string for sed search patternPEZ2009-01-02T19:03:02Z2009-01-02T19:03:02Z<p>Just escape everything in the REPLACE varible:</p>
<pre><code>echo $REPLACE | awk '{gsub(".", "\\\\&");print}'
</code></pre>