标签: xml bash
我想用XML文本(<networkConnector bla="blubb"/>...)
(<networkConnector bla="blubb"/>...)
我要插入的文本已经在我的脚本中生成并存储在变量中($ CONNECTIONS)
使用Bash脚本有一种简单的方法吗?
答案 0 :(得分:2)
sed -i "s/###marker###/$CONNECTIONS/g" file.txt
答案 1 :(得分:0)
我使用我找到的perl脚本解决了我的问题。
http://hellem.org/blog/index.php/2010/04/16/bash-insert-content-of-one-file-into-another-file?blog=6