{"expand":"renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations","id":"15114","self":"https://brg-jira-tst.state.mi.us/rest/api/2/issue/15114","key":"BRGTEST-11","fields":{"issuetype":{"self":"https://brg-jira-tst.state.mi.us/rest/api/2/issuetype/10200","id":"10200","description":"A task that needs to be done associated with Bridges project","iconUrl":"https://brg-jira-tst.state.mi.us/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype","name":"Task","subtask":false,"avatarId":10318},"customfield_11500":"QAT"}}
上記はa.jsonに保存されたjsonレスポンスです。
シェルスクリプトを使用して、a.jsonレスポンスからcustomfield_11500値を抽出したいと思います。それをする方法
この場合、シェルコマンドの出力は「QAT」結果を提供する必要があります。
スクロール嫌悪のためのJSON形式:
{
"expand": "renderedFields,names,schema,operations,editmeta,changelog,versionedRepresentations",
"id": "15114",
"self": "https://brg-jira-tst.state.mi.us/rest/api/2/issue/15114",
"key": "BRGTEST-11",
"fields": {
"issuetype": {
"self": "https://brg-jira-tst.state.mi.us/rest/api/2/issuetype/10200",
"id": "10200",
"description": "A task that needs to be done associated with Bridges project",
"iconUrl": "https://brg-jira-tst.state.mi.us/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype",
"name": "Task",
"subtask": false,
"avatarId": 10318
},
"customfield_11500": "QAT"
}
}
答え1
最新バージョンのksh93
シェル(v-
またはそれ以上):
read -m json j < file.json &&
print -r -- "${j.fields.customfield_11500}"
または、広く利用可能な(通常はデフォルトではインストールされていない)jq
jsonプロセッサツールを使用してください。
jq -r '.fields.customfield_11500' file.json
答え2
これに基づいて郵便はがき フォーマットされたjsonファイルを使用します。
grep -oP '(?<="customfield_11500": ")[^"]*' a.json
答え3
以下は、以下に基づいた単純な代替ソリューションです。jtc
:
bash $ cat a.json | jtc -w'<customfield_11500>l'
"QAT"
bash $
JSON構造は、JSON認識ルーチンによってのみ処理されるべきです(そうでなければ偽の肯定は避けられない)。