1
1
mirror of https://github.com/wader/fq.git synced 2024-12-26 23:15:04 +03:00
fq/pkg/interp/testdata/output.fqtest
Mattias Wadman 970465996c Init
2021-09-12 13:08:42 +02:00

16 lines
252 B
Plaintext

> fq -n '"a b c"'
"a b c"
> fq -rn '"a b c"'
a b c
> fq -n 1,2,3
1
2
3
# TODO: somehow support encoded expected output with no newline?
#> 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"