bash sed from variable code example
Example 1: sed replace with variable
Just concatenate var '"$var"' to replace values string in sed command:
$ sed -i 's/string_to_replace/'"$var"'/g' file_to_replace.txt
Example 2: sed with variables in shell script
Use double quotes for the sed expression.
sed "s/$replace_string/$replace_with/"`