Great to see. jq is nearly as ubiquitous as bash these days.<p>I’m excited about pick()! Could have used this so many times:<p>> Adds new builtin pick(stream) to emit a projection of the input object or array. @pkoppstein #2656<p><pre><code> $ jq -n '{"a": 1, "b": {"c": 2, "d": 3}, "e": 4} | pick(.a, .b.c, .x)'
{
"a": 1,
"b": {
"c": 2
},
"x": null
}</code></pre>