Skip to content

Instantly share code, notes, and snippets.

@NOLFXceptMe
Created January 28, 2019 00:53
Show Gist options
  • Save NOLFXceptMe/1422f8b09da8c24c3a6545402bb7a0f4 to your computer and use it in GitHub Desktop.
Save NOLFXceptMe/1422f8b09da8c24c3a6545402bb7a0f4 to your computer and use it in GitHub Desktop.
Notes on jq
$ cat excluded.keys
"green"
"blue"
$ cat color-map.json
{
"map": [
{
"color": "red",
"value": "#f00"
},
{
"color": "green",
"value": "#0f0"
},
{
"color": "blue",
"value": "#00f"
},
{
"color": "cyan",
"value": "#0ff"
}
]
}
$ jq --slurpfile excluded excluded.keys '{ "map" : [.map[] | select([.color] | inside($excluded) | not)]}' color-map.json
{
"map": [
{
"color": "red",
"value": "#f00"
},
{
"color": "cyan",
"value": "#0ff"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment