Bash脚本:使用xmllint将XML元素放入数组中

时间:2013-12-10 13:29:11

标签: xml bash shell

这是this post的后续问题。

我希望最终得到一个数组,其中包含xml的所有<description>个元素。

array[0] = "<![CDATA[A title for .... <br />]]>"
array[1] = "<![CDATA[A title for .... <br />]]>"

...

file.xml:

<item>
    <description><![CDATA[A title for the URLs<br /><br />

    http://www.foobar.com/foo/bar
    <br />http://bar.com/foo
    <br />http://myurl.com/foo
    <br />http://desiredURL.com/files/ddd
    <br />http://asdasd.com/onefile/g.html
    <br />http://second.com/link
    <br />]]></description> 


</item>
    </item>
<description> ...</description>
    <item>

1 个答案:

答案 0 :(得分:10)

Bash解决方案可能是

let itemsCount=$(xmllint --xpath 'count(//item/description)' /tmp/so.xml)
declare -a description=( )

for (( i=1; i <= $itemsCount; i++ )); do 
    description[$i]="$(xmllint --xpath '//item['$i']/description' /tmp/so.xml)"
done

echo ${description[@]}

声明

考虑bash可能不是正确的工具。 XSLT / XPath可以让您直接访问description元素的内容,如上一个答案中所述。例如:

xmllint --xpath '//item/description/text()' /tmp/so.xml

返回每个<description>内容