gpt4 book ai didi

xml - curl 和 xmllint 管道

转载 作者:数据小太阳 更新时间:2023-10-29 01:38:43 30 4
gpt4 key购买 nike

我尝试通过管道传递 curl 和 xmllint 来解析来自 url 的 xml 输出。但出于某种原因,xml 不会解析 xml,而是显示从 curl 生成的 xml。我缺少设置?如果将 curl 操作的结果存储为文件并将其用作 xmllint 的输入,它会正确解析。

 curl --location --header "Accept: application/rdf+xml" http://www.test.com | xmllint --format - --xpath '//title'

最佳答案

似乎 xmllint 要求 - stdin 重定向位于命令的末尾。

curl --location --header "Accept: application/rdf+xml" http://www.test.com \
| xmllint --format --xpath '//title' -

关于xml - curl 和 xmllint 管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19908777/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com