使用bash脚本作为工作示例
#!/bin/bash
echo "\
<global_preferences>
...
</global_preferences>" >> global_prefs.xml
我尝试了以下操作(恕我直言)应该起作用,但没有成功
(
^<config^>
^</config^>
) > test.xml
以下内容确实有效,但由于xml文件很长,所以它是PITA
echo ^<config^> > test.xml
echo ^</config^> >> test.xml