rq
rq copied to clipboard
Please add support for application/json-seq
rq is awesome!
However, I haven't worked out a way to get it to process (RFC 7464) application/json-seq input streams, along the lines of jq --seq. Such support would be extremely useful.
For now, I have a decent work-around: stripping RS characters prior to processing with rq:
input | perl -pe 's/\036//g' | rq ...
Not ideal, but workable.