mirror of
https://github.com/wader/fq.git
synced 2024-12-20 20:01:59 +03:00
fe64530e11
Also fix string esacpe in fuzz options parser
30 lines
230 B
Plaintext
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"
|
|
]
|
|
]
|