我有以下 json:
[
{
"_source": {
"layers": {
"http2": {
"http2.stream": {
"http2.length": "1030"
}
},
"http2": {
"http2.stream": {
"http2.length": "1246"
}
}
}
}
}
]
我正在执行以下jq
命令:
jq '.[]._source.layers.http2."http2.stream"' file.json
我期望得到以下结果:
{
"http2.length": "1030"
}
{
"http2.length": "1246"
}
但我只得到:
{
"http2.length": "1246"
}