我正在尝试使用bash编辑配置文件。我的文件如下所示:
<configuration>
<property>
<name></name>
<value></value>
</property>
<property>
<name></name>
<value></value>
</property>
</configuration>
我想向该文件添加另外几个
<property>
块。由于所有property
标记都包含在configuration
标记内,因此文件如下所示:<configuration>
<property>
<name></name>
<value></value>
</property>
<property>
<name></name>
<value></value>
</property>
<property>
<name></name>
<value></value>
</property>
</configuration>
我遇到了this post and followed the accepted answer,但是什么都没有追加到我的文件中,并且我尝试追加的xml块被“回显”为单行字符串。
我的bash文件如下所示:
file=/path/to/file/oozie-site.xml
content="<property>\n<name></name>\n<value></value>\n</property>\n<property>\n<name></name>\n<value></value>\n</property>"
echo $content
C=$(echo $content | sed 's/\//\\\//g')
sed "/<\/configuration>/ s/.*/${C}\n&/" $file
最佳答案
使用xmlstarlet:
xmlstarlet edit --omit-decl \
-s '//configuration' -t elem -n "property" \
-s '//configuration/property[last()]' -t elem -n "name" \
-s '//configuration/property[last()]' -t elem -n "value" \
file.xml
输出:<configuration>
<property>
<name/>
<value/>
</property>
<property>
<name/>
<value/>
</property>
<property>
<name/>
<value/>
</property>
</configuration>
关于xml - Bash将子节点插入XML文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42962889/