我想使用 sed 用变量的内容替换像这样 $$placeholder$$ 编写的文件占位符。
甚至可能吗?
这是我尝试过的:
sed -i "" -e 's/\$\$placeholder\$\$/$o/g' test.txt
工作一半,将 $$placeholder$$ 替换为 $o 而不是 $o 变量的内容
sed -i "" -e "s/\$\$placeholder\$\$/$o/g" test.txt
不匹配我的文本中的任何 $$placeholder$$
提前谢谢。
西里尔