阅读量:0
要使用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文件的路径。
请根据实际情况选择适合的方法。