jq:错误:无法遍历字符串

时间:2017-10-30 10:26:12

标签: jq

有人可以解释下面的警告吗?

输入文件是:

{
 "env": "DC",
 "hosts" :
[
{
  "apt_update_last_success": "1495991703",
  "architecture": "amd64",
  "hostname": "h1"
},
{
  "apt_update_last_success": "1495991703",
  "architecture": "amd64",
  "hostname": "h2"
},
{
  "apt_update_last_success": "1496045706",
  "architecture": "amd64",
  "hostname": "h3"
},
{
  "apt_update_last_success": "1496045705",
  "architecture": "amd64",
  "hostname": "h4"
},
{
  "apt_update_last_success": "1496049305",
  "architecture": "amd64",
  "hostname": "h5"
},
{
  "apt_update_last_success": "1496049307",
  "architecture": "amd64",
  "hostname": "h6"
}
]
}

jq命令返回预期的内容,但也打印出警告,我不知道为什么:

$ jq -r '.[][] | select(.hostname=="h6")' ddd.json
jq: error: Cannot iterate over string
{
  "apt_update_last_success": "1496049307",
  "architecture": "amd64",
  "hostname": "h6"
}

请告诉我如何摆脱这个。

谢谢。

1 个答案:

答案 0 :(得分:3)

问题在于您的注释.[][]。您的输入只是 对象 ,但您尝试将其显示为“容器”.[][]的“容器”。

正确的方法是:

jq '.hosts[] | select(.hostname=="h6")' ddd.json
{
  "apt_update_last_success": "1496049307",
  "architecture": "amd64",
  "hostname": "h6"
}

此外,在 jq 1.5 上,此jq -r '.[][] | select(.hostname=="h6")' ddd.json不会返回预期的对象,只会打印 jq: error (at jq1:36): Cannot iterate over string ("DC")