shell – 从jq JSON UNIX命令获取密钥名称

前端之家收集整理的这篇文章主要介绍了shell – 从jq JSON UNIX命令获取密钥名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
curl http://testhost.test.com:8080/application/app/version | jq’.version’| jq’。[]’

命令仅显示REST输出中的值。如下。

"madireddy@test.com"

"2323"

"test"

"02-03-2014-13:41"

"application"

我需要像下面一样获得关键名字。

email

versionID

context

date

versionName

任何人都可以帮我谢谢!

您可以使用:
$ jq 'keys' file.json

$ cat file.json:

"Archiver-Version" : "Plexus Archiver","Build-Id" : "","Build-Jdk" : "1.7.0_07","Build-Number" : "","Build-Tag" : "","Built-By" : "cporter","Created-By" : "Apache Maven","Implementation-Title" : "northstar","Implementation-Vendor-Id" : "com.test.testPack","Implementation-Version" : "testBox","Manifest-Version" : "1.0","appname" : "testApp","build-date" : "02-03-2014-13:41","version" : "testBox" }

jq 'keys' file.json
[
  "Archiver-Version","Build-Id","Build-Jdk","Build-Number","Build-Tag","Built-By","Created-By","Implementation-Title","Implementation-Vendor-Id","Implementation-Version","Manifest-Version","appname","build-date","version"
]

更新:使用这些键创建一个BASH数组:

arr=( $(jq 'keys[]' ms.json) )

printf "%s\n" ${arr[@]}

"Archiver-Version"
"Build-Id"
"Build-Jdk"
"Build-Number"
"Build-Tag"
"Built-By"
"Created-By"
"Implementation-Title"
"Implementation-Vendor-Id"
"Implementation-Version"
"Manifest-Version"
"appname"
"build-date"
"version"
原文链接:https://www.f2er.com/bash/387495.html

猜你在找的Bash相关文章