91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux下jq命令怎么使用

發布時間:2022-01-22 10:33:21 來源:億速云 閱讀:450 作者:iii 欄目:開發技術

這篇文章主要介紹了Linux下jq命令怎么使用的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Linux下jq命令怎么使用文章都會有所收獲,下面我們一起來看看吧。

Linux下jq命令怎么使用

jq 是一個輕量級的json處理命令。可以對json數據進行分片、過濾、映射和轉換。

安裝。

[root@test-dhcp ~]# yum install jq

使用實例

創建
[root@test-dhcp ~]# jq -n {a:1}{
 "a": 1
}
[root@test-dhcp ~]# jq -n '{a:"test"}'{
 "a": "test"}
合并
[root@test-dhcp ~]# jq -n '{a:"test"} + {b:2}'{
 "a": "test",
 "b": 2
}
[root@test-dhcp ~]# jq -n '{a:"test"} + {b:2} + {c:"testc"}'{
 "a": "test",
 "b": 2,
 "c": "testc"}
刪除
[root@test-dhcp ~]# cat test.json{"a": "test","b": 2, "c": "testc"}
[root@test-dhcp ~]# cat test.json |jq .{
 "a": "test",
 "b": 2,
 "c": "testc"}
[root@test-dhcp ~]# cat test.json |jq 'del(.b)'{
 "a": "test",
 "c": "testc"}
更新
[root@test-dhcp ~]# cat test.json{"a": "test","b": 2, "c": "testc"}
[root@test-dhcp ~]# cat test.json |jq '.b="testb"'{
 "a": "test",
 "b": "testb",
 "c": "testc"}
[root@test-dhcp ~]# cat test.json |jq '. + {d:4}'{
 "a": "test",
 "b": 2,
 "c": "testc",
 "d": 4
}
[root@test-dhcp ~]# cat test.json |jq '. + {d:4}' |jq '.d={dd:5}'{
 "a": "test",
 "b": 2,
 "c": "testc",
 "d": {
   "dd": 5
 }
}
查詢
[root@test-dhcp ~]# cat test.json |jq .{
 "a": "test",
 "b": 2,
 "c": "testc",
 "d": {
   "dd": 5
 }
}
[root@test-dhcp ~]# cat test.json |jq '. + {d:4}' |jq '.d={dd:5}' |jq .d.dd5
[root@test-dhcp ~]# echo '{"a":1,"b":2}' |jq '[.a,.b]'[
 1,
 2
]
查看數據類型
[root@test-dhcp ~]# echo "{}" |jq -r typeobject
[root@test-dhcp ~]# echo '[0, false, [], {}, null, "hello"]' |jq 'map(type)'[
 "number",
 "boolean",
 "array",
 "object",
 "null",
 "string"]
查詢數組中的值
[root@test-dhcp ~]# echo [1,2,3] |jq .[1]2
[root@test-dhcp ~]# echo [1,2,3] |jq .[2]3
查詢數組長度
[root@test-dhcp ~]# echo [1,2,3,9] |jq '.|length'4
[root@test-dhcp ~]# echo [1,2,3] |jq '.|length'3
數組相加
[root@test-dhcp ~]# echo [1,2,3] |jq '. + [4,5,6]'[
 1,
 2,
 3,
 4,
 5,
 6
]
  1. 高級查詢
[root@test-dhcp ~]# echo [1,2,3] | jq 'map(select(. >= 2))'[
 2,
 3
]
[root@test-dhcp ~]# echo [1,2,3] | jq 'map(select(. == 2))'[
 2
]
[root@test-dhcp ~]# echo [1,2,3] | jq 'map(select(. != 2))'[
 1,
 3
]
[root@test-dhcp ~]# cat test.json[
 {
   "id": "0",
   "model": "Intel(R)Xeon(R)CPUE5-2620v4@2.10GHz" },
 {
   "id": "1",
   "model": "Intel(R)Xeon(R)CPUE5-2620v4@2.10GHz" }
]
[root@test-dhcp ~]# cat test.json |jq .[].model"Intel(R)Xeon(R)CPUE5-2620v4@2.10GHz""Intel(R)Xeon(R)CPUE5-2620v4@2.10GHz"
類型轉換
[root@test-dhcp ~]# echo '["a","b,c,d","e"]' |jq 'join(",")'"a,b,c,d,e"[root@test-dhcp ~]# echo '["a","b,c,d","e",1]' |jq 'join(",")'jq: error (at :1): string (",") and number (1) cannot be added
[root@test-dhcp ~]# cat test.jsonliuxin,30,male
jiaweiqiang,29,femal
[root@test-dhcp ~]# jq -R 'split(",")|{"name":.[0],"age":.[1],"sex":.[2]}' ./test.json{
 "name": "liuxin",
 "age": "30",
 "sex": "male"}
{
 "name": "jiaweiqiang",
 "age": "29",
 "sex": "femal"}
[root@test-dhcp ~]# cat test.json{
 "name": "liuxin",
 "age": "30",
 "sex": "male"}
{
 "name": "jiaweiqiang",
 "age": "29",
 "sex": "femal"}
[root@test-dhcp ~]# cat test.json |jq . -c{"name":"liuxin","age":"30","sex":"male"}
{"name":"jiaweiqiang","age":"29","sex":"femal"}

關于“Linux下jq命令怎么使用”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Linux下jq命令怎么使用”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

方城县| 类乌齐县| 宜君县| 离岛区| 台中市| 泾阳县| 古蔺县| 敦化市| 本溪| 无棣县| 和硕县| 怀宁县| 水富县| 陆川县| 海原县| 大石桥市| 黄山市| 越西县| 云梦县| 泽普县| 白沙| 正安县| 霍山县| 丰县| 开化县| 奈曼旗| 苗栗市| 大荔县| 常宁市| 通河县| 资阳市| 阿图什市| 仁布县| 景宁| 祁连县| 虎林市| 岢岚县| 犍为县| 门源| 清水河县| 达孜县|