shell脚本json工具包(jq)
用 curl 返回 json 时,捕捉某一个字段非常方便
安装
#安装
brew install jq
使用
#获取 json 对象的 name 的值
curl -s 'https://api.github.com/users/lambda' | jq -r '.name'
参考:
blog comments powered by Disqus
用 curl 返回 json 时,捕捉某一个字段非常方便
#安装
brew install jq
#获取 json 对象的 name 的值
curl -s 'https://api.github.com/users/lambda' | jq -r '.name'
参考: