1
1
mirror of https://github.com/wader/fq.git synced 2024-12-20 20:01:59 +03:00
fq/format/csv/testdata/tsv.fqtest
Mattias Wadman fe64530e11 csv: Add tsv and header example
Also fix string esacpe in fuzz options parser
2022-09-15 01:16:45 +02:00

30 lines
230 B
Plaintext

/test:
1 2 3
4 5 6
$ fq -d csv -o comma=\\t . test
[
[
"1",
"2",
"3"
],
[
"4",
"5",
"6"
]
]
$ fq -d csv -o comma="\t" . test
[
[
"1",
"2",
"3"
],
[
"4",
"5",
"6"
]
]