Parse through JSON using only Bash [duplicate]

旧城冷巷雨未停 提交于 2019-12-25 16:08:11

问题


I have a JSON file :

{
    "request_id": "9a081c0c-9401-7eca-f55d-50e3b7c0301c",
    "lease_id": "",
    "renewable": false,
    "lease_duration": 2764800,
    "data": {
        "password": "test123",
        "username": "testuser1"
    },
    "wrap_info": null,
    "warnings": null,
    "auth": null
}

I am trying to read the values of username and password. Now I was able to integrate bash and python to get what I wanted.

# curl --silent -k https://1.2.3.4:8200/v1/secret/service/clustered -H "X-Vault-Token: c2e3b6ec17df" | python3 -c "import sys, json; print(json.load(sys.stdin)['data']['password'])"
test123

# curl --silent -k https://1.2.3.4:8200/v1/secret/service/clustered -H "X-Vault-Token: c2e3b6ec17df" | python3 -c "import sys, json; print(json.load(sys.stdin)['data']['username'])"
testuser1

But since I only want to use bash, I have done the following too:

# curl --silent -k https://1.2.3.4:8200/v1/secret/service/clustered -H "X-Vault-Token: c2e3b6ec17df" | sed -n -e 's/^.*password":"//p' | cut -d'"' -f1
test123

# curl --silent -k https://1.2.3.4:8200/v1/secret/service/clustered -H "X-Vault-Token: c2e3b6ec17df" | sed -n -e 's/^.*username":"//p' | cut -d'"' -f1
testuser

I am just concerned whether I have made use of sed and cut commands correctly in this case. Or is there a better way to extract the required fields?


回答1:


I would recommend using jq:

$ jq '.data.password' data.json
"test123"

Or both fields:

$ jq '.data.password, .data.username' data.json
"test123"
"testuser1"



回答2:


I would recommend jq a lightweight JSON aware parser for manipulating JSON content. Pipe your curl command input to a filter in jq as

curl-command | jq --raw-output '.data.password, .data.username'

Instructions to download-and-install jq available.




回答3:


You can use bashJson

Its a wrapper for the Python's JSON module and can handle complex JSON data.

See my answer here for example usage : https://stackoverflow.com/a/51821898/2734348



来源:https://stackoverflow.com/questions/44032450/parse-through-json-using-only-bash

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!