Как получить имена ключей от JSON с помощью jq
curl http://testhost.test.com:8080/application/app/version | jq '.version' | jq '.[]'
приведенная выше команда выводит только значения, как показано ниже:
"madireddy@test.com"
"2323"
"test"
"02-03-2014-13:41"
"application"
как я могу получить имена ключей вместо этого, как показано ниже:
email
versionID
context
date
versionName
3 ответа:
вы можете использовать:
$ 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 с помощью этих ключей:
С помощью BASH 4+:
mapfile -t arr < <(jq -r 'keys[]' ms.json)
на старых Баш вы можете сделать:
arr=() while IFS='' read -r line; do arr+=("$line") done < <(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"