Bash 将子节点插入到 XML 文件
Bash insert subnode to XML file
我正在尝试使用 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 块是 "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
将最后一行更改为sed -i.BAK "/<\/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>
--omit-decl
: omit XML declaration
-s
: add a subnode (see xmlstarlet edit
for details)
-t elem
: set node type, here: element
-n
: set name of element
我正在尝试使用 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 块是 "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
将最后一行更改为sed -i.BAK "/<\/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>
--omit-decl
: omit XML declaration
-s
: add a subnode (seexmlstarlet edit
for details)
-t elem
: set node type, here: element
-n
: set name of element