需求
如何在sed命令中传入变量
解决方法
bash
pra1="hi"
sed "s/hello/$pra1/g" test.txt
以上,将test.txt中的hello替换成了hi
如何在sed命令中传入变量
pra1="hi"
sed "s/hello/$pra1/g" test.txt
以上,将test.txt中的hello替换成了hi