1
1
mirror of https://github.com/wader/fq.git synced 2024-11-10 10:11:39 +03:00
fq/pkg/interp/testdata/output.fqtest

16 lines
252 B
Plaintext
Raw Normal View History

2021-08-13 17:40:28 +03:00
$ fq -n '"a b c"'
2020-06-08 03:29:51 +03:00
"a b c"
2021-08-13 17:40:28 +03:00
$ fq -rn '"a b c"'
2020-06-08 03:29:51 +03:00
a b c
2021-08-13 17:40:28 +03:00
$ fq -n 1,2,3
2020-06-08 03:29:51 +03:00
1
2
3
# TODO: somehow support encoded expected output with no newline?
2021-08-13 17:40:28 +03:00
#$ fq -nj 1,2,3
#$ fq -n0 1,2,3
#$ fq -nj0 1,2,3
#$ fq -nj "a","b","c"
#$ fq -n0 "a","b","c"
#$ fq -nj0 "a","b","c"