繁体   English   中英

bash 如果条件满足,则使用 jq 获取值

[英]bash use jq to get value if condition meets

我试图在 json 中获得一定的价值,每个条件都有一些。

代码如下所示

for i in "$(jq -r '.value[]' test.json)"; do
    result=$(echo $i | jq -r .result)
    if [ "$result" == "succeeded" ]
    then
      name=$(echo $i | jq -r .agent.name)
      echo "$name"
    fi
done

json 文件 - test.json

{
   "count":3,
   "value":[
      {
         "location":"CA",
         "result":"failed",
         "agent":{
            "id":97833,
            "name":"Brad"
         },
         "priority":0
      },
      {
         "location":"TX",
         "result":"failed",
         "agent":{i
            "id":15232,
            "name":"Tom"
         },
         "priority":0
      },
      {
         "location":"CO",
         "result":"succeeded",
         "agent":{
            "id":13412,
            "name":"John"
         },
         "priority":0
      }
   ]
}

如果结果“成功”,我正在尝试使用 jq 遍历 json 文件以获取代理的名称。 但是我从 result=$(echo $i | jq -r.result) 得到的结果似乎是返回字符串数组@("failed","failed","succeeded")。

=========================更新========================= =====

jq ' # get the name of the agent if the result was "succeeded".
  .value[]
  | select(.result == "succeeded")
  | var1=.agent.name
  | echo $var1
' test.json

如果我想将.agent.name 保存到一个变量中并与不同的命令一起使用,我该怎么办?

无需使用 shell 回路。

用你的test.json,

jq ' # get the name of the agent if the result was "succeeded".
  .value[]
  | select(.result == "succeeded")
  | .agent.name
' test.json

产生:

"John"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM