如何使用 curl 从 json 中过滤请求?

如何使用 curl 从 json 中过滤请求?

所以我最近在网络上部署了这个 Go 应用程序https://20200329t202730-dot-ipengine-dev.appspot.com/,它当前显示 IP 的格式是

{
    "ip": "169.254.1.1"
}

169.254.1.1如果我使用 curl,如何才能获得?

请记住,这是一个例子,每个用户都有不同的 IP。

答案是

curl -s 'https://20200329t202730-dot-ipengine-dev.appspot.com' | jq -r '.ip'

答案1

curl -s 'https://20200329t202730-dot-ipengine-dev.appspot.com' | jq -r '.ip'

这是使用 curl 搜索某些内容的答案。

相关内容