[bash] Escape a string for sed search pattern - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:07:56Z http://stackoverflow.com/feeds/question/407523 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern 2 [bash] Escape a string for sed search pattern Alexander Gladysh 2009-01-02T17:44:15Z 2009-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="&lt;funny characters here&gt;" 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#407563 0 Answer by Alex for [bash] Escape a string for sed search pattern Alex 2009-01-02T17:58:37Z 2009-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 &gt; " $1 ".new_ext" }' &gt; 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#407649 1 Answer by Ben Blank for [bash] Escape a string for sed search pattern Ben Blank 2009-01-02T18:31:15Z 2009-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, &amp;c.), and <code>&amp;</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/&amp;/\\\&amp;/g')/g" </code></pre> <p>Example:</p> <pre><code>$ export REPLACE="'\"|\\/&gt;&lt;&amp;!" $ echo fooKEYWORDbar | sed "s/KEYWORD/$(echo $REPLACE | sed -e 's/\\/\\\\/g' -e 's/\//\\\//g' -e 's/&amp;/\\\&amp;/g')/g" foo'"|\/&gt;&lt;&amp;!bar </code></pre> http://stackoverflow.com/questions/407523/bash-escape-a-string-for-sed-search-pattern/407730#407730 1 Answer by PEZ for [bash] Escape a string for sed search pattern PEZ 2009-01-02T19:03:02Z 2009-01-02T19:03:02Z <p>Just escape everything in the REPLACE varible:</p> <pre><code>echo $REPLACE | awk '{gsub(".", "\\\\&amp;");print}' </code></pre>