我正在使用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>
。
其余元素未添加。
有谁知道为什么会出现这个错误?
答案 0 :(得分:6)
改变这个:
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
答案 1 :(得分:3)
您不能在sed替换文本中使用未转义的换行符,例如$CONTENT
。 sed像shell一样使用换行符来终止命令。
如果替换文本中需要换行符,则需要在其前面加上反斜杠。
还有另一种使用r
选项添加文本的方法。例如:
让我们说你的主文件是;
$ cat file
<Students>
<student>
<name>john</>
<id>123</id>
</student>
<student>
<name>mike</name>
<id>234</id>
</student>
</Students>
您要添加的文本位于另一个文件中(非变量):
$ cat add.txt
<student>
<name>NewName</name>
<id>NewID</id>
</student>
你可以(使用gnu sed
):
$ sed '/<\/Students>/{
r add.txt
a \</Students>
d
}' file
<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>
但是,在提供此选项后,使用正则表达式解析xml仍然是一个非常糟糕的主意。它使解决方案非常脆弱且易于破解。将此视为仅限学习练习。
答案 2 :(得分:0)
这可能适合你(GNU sed&amp; Bash):
CONTENT=' <student>\
<name>NewName</name>\
<id>NewID</id>\
</student>'
sed '/<\/Students>/i\'"$CONTENT" file
或者,将新学生放在一个文件中:
sed '/<\/Students>/e cat new_student_file' file