rq icon indicating copy to clipboard operation
rq copied to clipboard

Please add support for application/json-seq

Open mdub opened this issue 7 years ago • 1 comments

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.

mdub avatar Jun 01 '18 01:06 mdub

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.

mdub avatar Jun 04 '18 13:06 mdub