In jq, I can select an item in a list fairly easily:
$ echo '["a","b","c","d","e"]' | jq '.[] | select(. == ("a","c"))'
Or if you prefer to get it as an array:
$ echo '["a","b","c","d","e"]' | jq 'map(select(. == ("a","c")))'
But how do I select all of the items that are not in the list? Certainly . != ("a","c")
does not work:
$ echo '["a","b","c","d","e"]' | jq 'map(select(. != ("a","c")))'
[
"a",
"b",
"b",
"c",
"d",
"d",
"e",
"e"
]
The above gives every item twice, except for "a"
and "c
"
Same for:
$ echo '["a","b","c","d","e"]' | jq '.[] | select(. != ("a","c"))'
"a"
"b"
"b"
"c"
"d"
"d"
"e"
"e"
How do I filter out the matching items?
I'm sure it is not the most simple solution, but it works :)
Edit: one more solution - this is even worse :)
The simplest and most robust (w.r.t. jq versions) approach would be to use the builtin
-
:If the blacklist is very long and riddled with duplicates, then it might be appropriate to remove them (e.g. with
unique
).Variations
The problem can also be solved (in jq 1.4 and up) using
index
andnot
, e.g.Or, with a variable passed in from the command-line (jq --argjson blacklist ...):
To preserve the list structure, one can use
map( select( ...) )
.With jq 1.5 or later, you could also use
any
orall
, e.g.Special case: strings
See e.g. Select entries based on multiple values in jq