我有以下XML。
<application>
<name>Activity Monitor.app</name>
<path>/Applications/Utilities/Activity Monitor.app</path>
<version>10.8.0< /version></application>
<application>
<name>Adobe Flash Player Install Manager.app</name>
<path>/Applications/Utilities/Adobe Flash Player Install Manager.app</path>
<version>11.3.300.268</version></application>
使用XMLStarlet,我希望得到以下输出:
<package name="Activity Monitor.app">
<attribute name="Path">/Applications/Utilities/Activity Monitor.app</attribute>
<attribute name="Ver">10.8.0</attribute >
<package name="Adobe Flash Player Install Manager.app">
<attribute name="Path">/Applications/Utilities/Adobe Flash Player Install Manager.app</attribute>
<attribute name="Ver">11.3.300.268</attribute>
我尝试过命令:
xml sel -t -v "computer/software/applications/application/path" -v "computer/software/applications/application/name" -v computer/software/applications/application/version
但这只是简单地列出所有应用程序,然后列出所有路径,再列出所有版本。我是XMLStarlet的新手,所以我非常感谢任何/所有的帮助!谢谢
恐怕获得所需内容的最简单方法是编写类似于以下内容的xsl转换:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="application">
<package>
<xsl:attribute name="name">
<xsl:value-of select="name"/>
</xsl:attribute>
<xsl:apply-templates/>
</package>
</xsl:template>
<xsl:template match="path|version">
<attribute>
<xsl:attribute name="name">
<xsl:value-of select="name()"/>
</xsl:attribute>
<xsl:value-of select="text()"/>
</attribute>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>
然后可以使用xmlstarlet进行转换:
xml tr thetransformation.xsl source.xml
我一直觉得这个教程对这样的事情很有帮助:http://zvon.org/xxl/XSLTutorial/Output/contents.html#id8