replace string using sed from value of environment variable code example
Example 1: replace text with sed
sed -i 's/old-text/new-text/g' input.txt
Example 2: sed replace with variable
Use double quotes to make the shell expand variables while preserving whitespace:
sed -i "s/$var1/ZZ/g" "$file"