= jq command-line JSON processor notes = {{{#!highlight sh # Merge JSON files $ echo '{"a":"foo","b":"bar"} {"c":"baz","a":0}' | jq -s add { "a": 0, "b": "bar", "c": "baz" } }}} ---- CategoryCategory