如何使用xsltproc将shell变量传递到xsl?

时间:2018-10-16 11:03:16

标签: shell xslt

我想传递变量name=$(echo "$t" | cut -f 1 -d '.')  从shell脚本到以下xsl作为$ name变量:

 <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/">

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>

<xsl:template match="dc:record">
    <xsl:copy copy-namespaces="no">
        <xsl:apply-templates select="@* | *" />
        <xsl:param name="name"/>
         <dc:relation><xsl:value-of select="$name"/></dc:relation>    
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

是否可以通过xsltproc -o ie1.xml ../../transform.xsl ie1.xml发送变量,以及如何执行此操作?

1 个答案:

答案 0 :(得分:0)

在顶层定义xsl:param

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/">

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:param name="name" />
...

然后使用xsltproc参数调用--stringparam

xsltproc --stringparam name "$name" -o ie1.xml ../../transform.xsl ie1.xml

仅此而已。