要使用shell獲取xml屬性值,可以使用以下命令:
grep
和正則表達式來匹配屬性值:value=$(grep -oP '<tagname attribute="\K[^"]+' file.xml)
echo $value
其中,tagname
是要匹配的標簽名,attribute
是要獲取的屬性名,file.xml
是xml文件的路徑。
awk
命令來解析xml,并獲取屬性值:value=$(awk -F'[<>]' '/<tagname/{for(i=1;i<=NF;i++){if($i~/attribute=/){split($i,a,"\"");print a[2];break}}}' file.xml)
echo $value
同樣,tagname
是要匹配的標簽名,attribute
是要獲取的屬性名,file.xml
是xml文件的路徑。
請根據實際情況選擇適合的方法。