在shell脚本中使用sed命令在XML文件中添加XML元素

前端之家收集整理的这篇文章主要介绍了在shell脚本中使用sed命令在XML文件中添加XML元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用sed命令将xml元素插入到现有的xml文件中.

我有xml文件

<Students>
    <student>
        <name>john</>
        <id>123</id>
    </student>
    <student>
        <name>mike</name>
        <id>234</id>
    </student>
</Students>

我想添加新元素作为

<student>
        <name>NewName</name>
        <id>NewID</id>
    </student>

所以我的新xml文件将是

<Students>
    <student>
        <name>john</>
        <id>123</id>
    </student>
    <student>
        <name>mike</name>
        <id>234</id>
    </student>
    <student>
        <name>NewName</name>
        <id>NewID</id>
    </student>
</Students>

为此,我编写了shell脚本

#! /bin/bash

CONTENT="<student>
            <name>NewName</name>
            <id>NewID</id>
        </student>"

#sed -i.bak '/<\/Students>/ i \ "$CONTENT" /root/1.xml
sed -i.bak '/<\/Students>/ i \'$CONTENT'/' /root/1.xml

我收到错误

sed: can't read <name>NewName</name>: No such file or directory
sed: can't read <id>NewID</id>: No such file or directory
sed: can't read </student>: No such file or directory

并且在xml文件中,只有< student>被添加.
其余元素未添加.
有谁知道为什么这个错误

改变这个:
CONTENT="<student>
            <name>NewName</name>
            <id>NewID</id>
        </student>"

对此:

CONTENT="<student>\n<name>NewName</name>\n<id>NewID</id>\n</student>"

接着 :

C=$(echo $CONTENT | sed 's/\//\\\//g')
sed "/<\/Students>/ s/.*/${C}\n&/" file
原文链接:https://www.f2er.com/bash/386895.html

猜你在找的Bash相关文章