The interface I'd like here is inspired by jq -r, which I frequently find handy:
• --raw-output / -r:
With this option, if the filter´s result is a string then it will be writ‐
ten directly to standard output rather than being formatted as a JSON
string with quotes. This can be useful for making jq filters talk to
non-JSON-based systems.
Requested by @kurtbuilds in #8. There's also a TODO in the code:
// TODO: support shell-friendly output like `jq -r`
The interface I'd like here is inspired by
jq -r
, which I frequently find handy:Requested by @kurtbuilds in #8. There's also a TODO in the code: