标签: bash shell curl
我已经做了一个卷曲请求并得到响应:
$ curl -s http://xx.com/api $ {"key":"value"}
如何直接从请求中获取值?像这样:
$ curl -s http://xx.com/api | XXXX $ value
答案 0 :(得分:1)
curl -s http://xx.com/api | sed 's/.*:"\(.*\)".*/\1/'