Linux 命令详解Shell 解析 json命令jq详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 命令详解Shell 解析 json命令jq详解相关的知识,希望对你有一定的参考价值。

前言

在自动化部署中涉及到shell脚本需要动态读取很多配置文件,最好是json格式。

更多jq信息: http://stedolan.github.io/jq/manual/

一、根据key获取value

语法:jq ‘.key‘

1、单个值获取

[email protected]:~$ cat d25341478381063d1c76e81b3a52e0592a7c997f.json | jq .sign
"d25341478381063d1c76e81b3a52e0592a7c997f"

2、JSON nested parse(嵌套解析)

[email protected]:~$ cat d25341478381063d1c76e81b3a52e0592a7c997f.json | jq .live_node_config.node1.ip
"192.168.10.10"

注意:json 数组的键命名必须为下划线"_",不能为"-",否则解析不了。如:

错误的命名

  "live-node-proxy-config": {
    "ip": "192.168.10.100",
    "user": "www",
    "pwd": "www123456"
  },

正确

  "live_node_proxy_config": {
    "ip": "192.168.10.100",
    "user": "www",
    "pwd": "www123456"
  },

小菜刀!!!在这里我们可以使用curl可以获取完全一样的结果

[email protected]:~$ curl -s https://www.tinywan.com/frontend/websocket_client/autoInstallConf | jq .live_node_config.node1.ip
"192.168.10.10"

curl 的 -s 参数表示:静默模式。不输出任何东西,更多了解【curl命令

在这里如果不加该参数则会输出文件下载进度,如下所示:

[email protected]:~$ curl https://www.tinywan.com/frontend/websocket_client/autoInstallConf | jq .live_node_config.node1.ip
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   636    0   636    0     0   2053      0 --:--:-- --:--:-- --:--:--  2058
"192.168.10.10"

3、解析不存在的元素,会返回null

[email protected]:~$ cat d25341478381063d1c76e81b3a52e0592a7c997f.json | jq .live_node_config.node1.ip123
null

 

二、jq的内建函数,如:keys,has

1、keys是用来获取JSON中的key元素的,查找json中所有的键

[email protected]:$ curl https://www.tinywan.com/frontend/websocket_client/autoInstallConf | jq keys
[
  "live-node-config",
  "live-node-proxy-config",
  "osscmd-config",
  "push-config",
  "redis-config",
  "sign"
]

2、has是用来是判断是否存在某个key

[email protected]:~$ curl https://www.tinywan.com/frontend/websocket_client/autoInstallConf | jq has("sign")
true
[email protected]:~$ curl https://www.tinywan.com/frontend/websocket_client/autoInstallConf | jq has("sign2")
false
[email protected]:~$

 

以上是关于Linux 命令详解Shell 解析 json命令jq详解的主要内容,如果未能解决你的问题,请参考以下文章

Linux主要shell命令详解

shell命令是啥

linux主要shell命令详解

linux shell脚本执行命令详解

bash(shell)命令解释器,Linux界面介绍

Linux主要shell命令详解(上)