I would like a option to get the output of a jq filter to not have quotation marks.
In the manual this is listed as: jq "-r" or "--raw-output"
Example:
jq '.[] | select(.siteCode | index("test") or index("test2") | not) | .name'
Below should no quotation mark:
jq --raw-output '.[] | select(.siteCode | index("test") or index("test2") | not) | .name'