使用jq从JSON文件中提取某些信息

我从我的json文件提取一些信息,格式如下:

{
    "name": "value",
    "website": "https://google.com",
    "type" : "money",
    "some": "0",
    "something_else": "0",
    "something_new": "0",
    "test": [
      {"Web" : "target1.com", "type" : "2" },
      {"Web" : "target2.com", "type" : "3" },
      {"Web" : "target3.com", "type" : "3" }, 
      {"Web" : "target3.com", "type" : "3" } 
    ]
}

我知道jq -r .test [] .Web将输出

target1.com
target2.com
target3.com 

但是如果我只想获得类型为3的值意味着输出显示target2.com和target3.com

解决方法:

$jq -r '.test[] | select(.type == "3").Web' file.json 
target2.com
target3.com
target3.com

这会将.test []节点传递给select,它使用.type ==“3”选择器过滤其输入.然后从过滤后的列表中选择.Web.

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...