mirror of
https://github.com/wader/fq.git
synced 2024-11-28 03:02:55 +03:00
66 lines
581 B
Plaintext
66 lines
581 B
Plaintext
# TODO: test for jq -R . <(echo -ne 'a\nb') <(echo c) produces "a" and "bc"
|
|
/a:
|
|
a
|
|
b
|
|
/c:
|
|
c
|
|
$ fq -R . /a /c
|
|
"a"
|
|
"b"
|
|
"c"
|
|
$ fq -Rs . /a /c
|
|
"a\nb\nc\n"
|
|
$ fq -nRs input /a /c
|
|
"a\nb\nc\n"
|
|
$ fq -nRs inputs /a /c
|
|
"a\nb\nc\n"
|
|
$ fq -R
|
|
"a"
|
|
"b"
|
|
"c"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -nR input
|
|
"a"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -nR inputs
|
|
"a"
|
|
"b"
|
|
"c"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -Rs
|
|
"a\nb\nc\n"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -nRs input
|
|
"a\nb\nc\n"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -nRs inputs
|
|
"a\nb\nc\n"
|
|
stdin:
|
|
a
|
|
b
|
|
c
|
|
$ fq -R . missing
|
|
exitcode: 2
|
|
stderr:
|
|
error: missing: file not found
|
|
$ fq -Rs . missing
|
|
""
|
|
exitcode: 2
|
|
stderr:
|
|
error: missing: file not found
|