Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to parse the json command line in Linux

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces how to parse the json command line in Linux, the content is very detailed, interested friends can refer to, I hope it can be helpful to you.

1. Jq. Get all the structures starting from the root node and format the output $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,101, "nickname": "world"}} 2. Jq .xxxxx gets the value of field xxxx and formats the output $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"}]} 3. Jq .xxx.bbbb [0] .aaaa gets the first aaaa field $cat test.json {"data": {"userList": [{"uid": 100, "nickname": "hello"}, {"uid": 101in the bbbb array of the xxx field. "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" about how to parse the json command line in Linux. I hope the above content can be of some help to you and learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report