我正在bash脚本中使用XMLStarlet,以根据该文件中git的变化基本上找到特定的XML节点。
在我们找到需要搜索的节点中包含>
作为其值的一部分之前,这一直很好。
我要查找的节点示例:
<?xml version="1.0" encoding="UTF-8"?>
<CustomLabels xmlns="http://soap.sforce.com/2006/04/metadata">
<labels>
<fullName>Button_Value_Get_Data</fullName>
<categories>Button Value</categories>
<language>en_US</language>
<protected>false</protected>
<shortDescription>Value for Button to get Data</shortDescription>
<value>> GET VEHICLE DATA</value>
</labels>
</CustomLabels>
这是我正在运行的命令:
xmlstarlet sel -N x="http://soap.sforce.com/2006/04/metadata" -t -c "//x:labels[x:value/text()=\"> GET VEHICLE DATA\"]/x:fullName" -n myFile.xml
当需要搜索的值不包含>
时,该命令非常有用。
有没有办法可以搜索这个?还是这是xmlstarlet的限制?
谢谢。
答案 0 :(得分:1)
>
是>
的编码。如果您在表达式中使用文字值,则它会正确匹配:
$ xmlstarlet sel -N x="http://soap.sforce.com/2006/04/metadata" -t -c "//x:labels[x:value/text()=\"> GET VEHICLE DATA\"]/x:fullName" -n test.xml
<fullName xmlns="http://soap.sforce.com/2006/04/metadata">Button_Value_Get_Data</fullName>