使用shell脚本更新XML文件中的选定标记值

时间:2014-04-08 08:05:34

标签: xml shell unix xml-parsing

我有一个类似于以下格式的XML文件:

<name>property1</name>
    <fullName>property1</fullName>
    <info> #property info# </info>
    <value>
      <current>true</current>
      <default>false</default>
    </value>

<name>property2</name>
    <fullName>property2</fullName>
    <info> #property info# </info>
    <value>
      <current>true</current>
      <default>false</default>
    </value>

<name>property3</name>
    <fullName>property3</fullName>
    <info> #property info# </info>
    <value>
      <current>true</current>
      <default>false</default>
    </value>

xml文件包含数百个此类属性。我想只将一些属性的当前标记的值(比如property2)从true更新为false。我怎么能用Unix命令做到这一点?

我是Unix的新手,我正在为此编写一个Unix shell脚本。任何帮助将不胜感激。

谢谢!

1 个答案:

答案 0 :(得分:0)

我认为,这对你有用:

http://www.unixcl.com/2010/01/replace-values-in-xml-using-sed-and-awk.html

稍后编辑:

这样做:

cat asd.xml | awk '{ x[NR] = $0 } END { for ( i=1 ; i<=NR ; i++ ) { if (x[i] ~ /<name>property2/ ) {x[i+4]="      <current>false</current>"}print x[i] }} ' > newfile.xml

其中asd.xml是原始文件,newfile.xml是新文件。 请务必先备份原始文件!