假设我有以下JSON输出:
{
"Stacks": [
{
"StackName": "hello-world",
"Tags": [
{
"Key": "environment",
"Value": "sandbox"
},
{
"Key": "Joe Shmo",
"Value": "Dev"
}
]
},
{
"StackName": "hello-man",
"Tags": [
{
"Key": "environment",
"Value": "live"
},
{
"Key": "Tandy",
"Value": "Dev"
}
]
}
]
}
我如何编写jq
查询以获取所有{em> NOT 的StackName
值为Tags
的堆栈的所有"Key": "Joe Shmo"
?因此结果将仅返回hello-man
。
答案 0 :(得分:1)
.Stacks[]
| select( any(.Tags[]; .Key == "Joe Shmo" ) | not)
| .StackName
这将有效地检查是否相等(any
具有短路语义),而contains
将检查是否包含。
答案 1 :(得分:0)
使用contains
,如下所示:
jq -r '.Stacks[]|select(.Tags|contains([{"Key": "Joe Shmo"}])|not).StackName'
注意:-r
从输出中删除引号,否则jq
将打印"hello-man"
(在双引号内)