show/hide this revision's text 3 clarification

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.

show/hide this revision's text 2 clarification

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/PATTERN/$REPLACE/g"
s/KEYWORD/$REPLACE/g"

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

show/hide this revision's text 1

[bash] Escape a string for sed search pattern

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/PATTERN/$REPLACE/g"

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