xmllint unknown option '--xpath'

ⅰ亾dé卋堺 提交于 2019-11-27 03:46:19

问题


I've seen this syntax several places (eg, here):

xmllint --xpath '/plist/array/string/text()' tmp.xml, used to query a particular XML node using an xpath selector. However, I'm getting the error Unknown option --xpath when I try to execute this on my machine (mac os x snow leopard).

Looking more closely at the man page for xmllint, I don't see the --xpath option documented...

Am I just totally missing something here?


回答1:


xmllint --shell tmp.xml <<<'xpath /plist/array/string/text()'

If you need to make xmllint to read stdin:

cat /tmp/tmp.xml | xmllint --shell <(cat) <<<'xpath /plist/array/string/text()'



回答2:


For some people updating is not an option. You have to work with the given version, that is installed by some other team and you go with it.

You can try through --shell:

xmllint --shell tmp.xml << EOF
'/plist/array/string/text()'
EOF



回答3:


Ah, yep, must've been an issue with an outdated version of libxml2.

Updating libxml2 (to v2.7.8) via macports seems to have fixed the problem.




回答4:


If you want to manipulate plist files from the command line on a Mac, use PlistBuddy.

For example, you can do this kind of thing in a shell script:

BUNDLE_ID=`/usr/libexec/PlistBuddy -c 'Print :CFBundleIdentifier' Info.plist`
echo $BUNDLE_ID

It's very powerful, you can add/delete items in arrays and dictionaries, look up keyed or indexed values, copy/merge/import other files, etc. See /usr/libexec/PlistBuddy -h for full info.



来源:https://stackoverflow.com/questions/11975862/xmllint-unknown-option-xpath

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!