最佳答案
我使用下面的代码来替换字符串 在一个 shell 脚本中。
echo $LINE | sed -e 's/12345678/"$replace"/g'
但是它被 $replace
代替了变量的值。
有人知道哪里出了问题吗?