前端之家收集整理的这篇文章主要介绍了
bash – 如何替换文本文件中的${}占位符?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Sed!
给定template.txt:
The number is ${i}
The word is ${word}
我们只需要说:
sed -e "s/\${i}/1/" -e "s/\${word}/dog/" template.txt
感谢Jonathan Leffler提示将多个-e参数传递给同一个sed调用。
原文链接:https://www.f2er.com/bash/392215.html