mirror of
https://github.com/wader/fq.git
synced 2024-12-25 22:34:14 +03:00
a7a101ca67
Also add authors to avro and macho decoders Generated with: for i in $(go run . -r -n '_registry | [([([.files[][].name | split(".")[0]] | unique[]), (.formats[].name)] | count[] | select(.[1] == 2)[0]), (.formats[] | select(.decode_in_arg).name)] | unique[]'); do DIR=$(dirname $(find format -name $i.go)); echo "$ fq -h $i" > "$DIR/testdata/help_$i.fqtest" ; done
32 lines
636 B
Plaintext
32 lines
636 B
Plaintext
$ fq -h csv
|
|
csv: Comma separated values decoder
|
|
|
|
Options
|
|
=======
|
|
|
|
comma=, Separator character
|
|
comment=# Comment line character
|
|
|
|
Decode examples
|
|
===============
|
|
|
|
# Decode file as csv
|
|
$ fq -d csv . file
|
|
# Decode value as csv
|
|
... | csv
|
|
# Decode file using csv options
|
|
$ fq -d csv -o comma="," -o comment="#" . file
|
|
# Decode value as csv
|
|
... | csv({comma:",",comment:"#"})
|
|
|
|
TSV to CSV
|
|
==========
|
|
|
|
$ fq -d csv -o comma="\t" tocsv file.tsv
|
|
|
|
Convert rows to objects based on header row
|
|
===========================================
|
|
|
|
$ fq -d csv '.[0] as $t | .[1:] | map(with_entries(.key = $t[.key]))' file.csv
|
|
|