up vote 24 down vote favorite
10
share [g+] share [fb]

In my bash script I have an external (received from user) string, which I should use in sed pattern.

REPLACE="<funny characters here>"
sed "s/KEYWORD/$REPLACE/g"

How can I escape the $REPLACE string so it would be safely accepted by sed as a literal replacement?

NOTE: The KEYWORD is a dumb substring with no matches etc. It is not supplied by user.

link|improve this question

Are you trying to avoid the "Little Bobby Tables" problem if they say "/g -e 's/PASSWORD=.*/PASSWORD=abc/g'"? – Paul Tomblin Jan 2 '09 at 17:53
Yes, this one too. – Alexander Gladysh Jan 2 '09 at 17:56
feedback

4 Answers

up vote 25 down vote accepted

Sorry for downvoting PEZ's accepted answer, but escaping everything is a bad idea. Sed needs many characters to be escaped to get their special meaning. For example, if you escape a digit in the replacement string, it will turn in to a backreference.

As Ben Blank said, there are only three characters than needs to be escaped in the replacement string (escapes themselves, forward slash for end of statement and & for replace all):

sed -e 's/[\/&]/\\&/g'

If you ever need to escape the KEYWORD string, this is the one you need (I hope I remembered all of them):

sed -e 's/\([[\/.*]\|\]\)/\\&/g'

Addendum: Remember, if you use a character other than / as delimiter, you need replace the slash in the expressions above wih the character you are using. See PeterJCLaw's comment for explanation.

link|improve this answer
3  
+1, I didn't think of backrefs and stuff. – PEZ Apr 28 '10 at 20:33
1  
It's worth noting that you can avoid having to escape the forward slashes by not using them as the delimiters. Most (all?) versions of sed allow you to use any character, so long as it fits the pattern: $ echo 'foo/bar' | sed s_/_:_ # foo:bar – PeterJCLaw Jun 18 '11 at 13:27
@PeterJCLaw: Good point. I believe that is true for all versions of sed. There are only two escaped slashes above, so it wouldn't make much difference, but it matters if you use another delimiter in the sed expression this output is inserted into. I added some info to reflect that. – Pianosaurus Jul 2 '11 at 10:43
1  
sed -e 's/(\/\|\\\|&)/\\&/g' didn't work for me on OSX but this does: sed 's/([\\\/&])/\\&/g' and it's slightly shorter. – jcoffland Nov 6 '11 at 1:53
@jcoffland: I have no idea why I didn't use character groups when I initially wrote this. I have updated the post. GNU sed doesn't require (or support) escaping characters inside character groups, so I had to make it even shorter. Does my version work for you? If not, I'll add a comment about non-gnu seds. What's your --version? – Pianosaurus Dec 25 '11 at 14:25
feedback

The only three literal characters which are treated specially in the replace clause are / (to close the clause), \ (to escape characters, backreference, &c.), and & (to include the match in the replacement). Therefore, all you need to do is escape those three characters:

sed "s/KEYWORD/$(echo $REPLACE | sed -e 's/\\/\\\\/g' -e 's/\//\\\//g' -e 's/&/\\\&/g')/g"

Example:

$ export REPLACE="'\"|\\/><&!"
$ echo fooKEYWORDbar | sed "s/KEYWORD/$(echo $REPLACE | sed -e 's/\\/\\\\/g' -e 's/\//\\\//g' -e 's/&/\\\&/g')/g"
foo'"|\/><&!bar
link|improve this answer
Also a newline, I think. How do I escape a newline? – Alexander Gladysh Jan 2 '09 at 18:52
feedback

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.

ls | awk '{ print "awk " "'"'"'"  " {print $1,$2,$3} " "'"'"'"  " " $1 ".old_ext > " $1 ".new_ext"  }' > for_the_birds

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.

link|improve this answer
feedback

Just escape everything in the REPLACE varible:

echo $REPLACE | awk '{gsub(".", "\\\\&");print}'
link|improve this answer
Escaping everything is not a good idea. See my post for details. – Pianosaurus Apr 24 '10 at 18:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.