如何从shell脚本获取dict值?

时间:2011-12-03 16:15:45

标签: bash shell curl

我已经做了一个卷曲请求并得到响应:

$ curl -s http://xx.com/api
$ {"key":"value"}

如何直接从请求中获取值?像这样:

$ curl -s http://xx.com/api | XXXX
$ value

1 个答案:

答案 0 :(得分:1)

curl -s http://xx.com/api | sed 's/.*:"\(.*\)".*/\1/'