Bash将子节点插入XML文件

前端之家收集整理的这篇文章主要介绍了Bash将子节点插入XML文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用bash编辑配置文件.我的文件看起来像这样:
<configuration>
  <property>
    <name></name>
    <value></value>
  </property>
  <property>
    <name></name>
    <value></value>
  </property>
</configuration>

我想添加另外两个< property>阻止文件.由于所有属性标记都包含在配置标记内,因此文件将如下所示:

<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块是“echo-ed”作为单行字符串.
我的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 ed --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>

--omit-decl: omit XML declaration

-s: add a subnode (see xmlstarlet ed for details)

-t elem: set node type,here: element

-n: set name of element

猜你在找的Bash相关文章