通过jq为每个JSON项运行bash命令

时间:2016-08-05 01:20:57

标签: json bash parsing jq

我想通过利用jq为JSON格式的数据片段中的每个字段运行bash命令。

{
    "apps": {
        "firefox": "1.0.0",
        "ie": "1.0.1",
        "chrome": "2.0.0"
    }
}

基本上我想要这样的东西:

foreach app:
   echo "$key $val"
done

2 个答案:

答案 0 :(得分:1)

假设您想列出apps对象的键/值:

$ jq -r '.apps | to_entries[] | "\(.key)\t\(.value)"' input.json

要使用输出作为参数调用另一个程序,您应该熟悉xargs

$ jq -r '...' input.json | xargs some_program

答案 1 :(得分:1)

这是一个bash脚本,演示了一种可能的解决方案。

#!/bin/bash
json='
{
    "apps": {
        "firefox": "1.0.0",
        "ie": "1.0.1",
        "chrome": "2.0.0"
    }
}'

jq -M -r '
    .apps | keys[] as $k | $k, .[$k]
' <<< "$json" | \
while read -r key; read -r val; do
   echo "$key $val"
done

示例输出

chrome 2.0.0
firefox 1.0.0
ie 1.0.1