是否可以将文本块中的尖括号转义到文件?

时间:2019-11-06 15:09:29

标签: cmd

使用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

0 个答案:

没有答案