jq 打印子对象中所有内容的键和值

jq 打印子对象中所有内容的键和值

我找到了这个问答使用打印对象中所有键的解决方案:

jq -r 'keys[] as $k | "\($k), \(.[$k] | .ip)"' 

就我而言,我想在子对象上执行上述操作:

jq -r '.connections keys[] as $k | "\($k), \(.[$k] | .ip)"'

执行此操作的正确语法是什么?

答案1

只需通过管道即可keys运行:

样本input.json

{
    "connections": {
        "host1": { "ip": "10.1.2.3" },
        "host2": { "ip": "10.1.2.2" },
        "host3": { "ip": "10.1.18.1" }
    }
}

jq -r '.connections | keys[] as $k | "\($k), \(.[$k] | .ip)"' input.json

输出:

host1, 10.1.2.3
host2, 10.1.2.2
host3, 10.1.18.1

答案2

一个更通用的 bash 函数来导出变量(带有插值):

#
#------------------------------------------------------------------------------
# usage example:
# doExportJsonSectionVars cnf/env/dev.env.json '.env.virtual.docker.spark_base'
#------------------------------------------------------------------------------
doExportJsonSectionVars(){

   json_file="$1"
   shift 1;
   test -f "$json_file" || echo "the json_file: $json_file does not exist !!! Nothing to do" && exit 1

   section="$1"
   test -z "$section" && echo "the section in doExportJsonSectionVars is empty !!! nothing to do !!!" && exit 1
   shift 1;

   while read -r l ; do
      eval $l ;
   done < <(cat "$json_file"| jq -r "$section"'|keys_unsorted[] as $key|"export \($key)=\(.[$key])"')
}

示例数据

cat cnf/env/dev.env.json
{
  "env": {
    "ENV_TYPE": "dev",
      "physical": {
        "var_name": "var_value"
      },
      "virtual": {
          "docker": {
            "spark_base": {
                "SPARK_HOME": "/opt/spark"
              , "SPARK_CONF": "$SPARK_HOME/conf"
            }
            , "spark_master": {
              "var_name": "var_value"
            }
            , "spark_worker": {
              "var_name": "var_value"
            }
          }
          , "var_name": "var_value"
      }
  }
}

相关内容