这篇文章给大家介绍Linux中怎么解析 json命令行,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
建网站原本是网站策划师、网络程序员、网页设计师等,应用各种网络程序开发技术和网页设计技术配合操作的协同工作。成都创新互联专业提供网站设计、成都网站制作,网页设计,网站制作(企业站、响应式网站设计、电商门户网站)等服务,从网站深度策划、搜索引擎友好度优化到用户体验的提升,我们力求做到极致!
jq .
获取从根节点开始的所有结构并格式化输出$ cat test.json {"data": {"userList": [{"uid": 100, "nickname": "hello"}, {"uid": 101, "nickname": "world"}]}} $ cat test.json | jq . { "data": { "userList": [ { "uid": 100, "nickname": "hello" }, { "uid": 101, "nickname": "world" } ] } }
jq .xxxx
获取字段xxxx的值并格式化输出$ cat test.json {"data": {"userList": [{"uid": 100, "nickname": "hello"}, {"uid": 101, "nickname": "world"}]}} $ cat test.json | jq .data { "userList": [ { "uid": 100, "nickname": "hello" }, { "uid": 101, "nickname": "world" } ] }
jq .xxx.bbbb[0].aaaa
获取xxx字段的bbbb数组中的第一个的aaaa字段$ cat test.json {"data": {"userList": [{"uid": 100, "nickname": "hello"}, {"uid": 101, "nickname": "world"}]}} $ cat test.json | jq . { "data": { "userList": [ { "uid": 100, "nickname": "hello" }, { "uid": 101, "nickname": "world" } ] } } $ cat test.json | jq .data.userList[0].nickname "hello" $ cat test.json | jq .data.userList[1].nickname "world"
关于Linux中怎么解析 json命令行就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。