mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 12:45:59 +02:00
csv2tsv: add page (#8407)
* add page: csv2tsv * Update pages/common/csv2tsv.md
This commit is contained in:
parent
1cf75da830
commit
a79479c286
1 changed files with 16 additions and 0 deletions
16
pages/common/csv2tsv.md
Normal file
16
pages/common/csv2tsv.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# csv2tsv
|
||||
|
||||
> Convert CSV (comma-separated) text to TSV (tab-separated) format.
|
||||
> More information: <https://github.com/eBay/tsv-utils/blob/master/README.md#csv2tsv>.
|
||||
|
||||
- Convert from CSV to TSV:
|
||||
|
||||
`csv2tsv {{path/to/input_csv1 path/to/input_csv2 ...}} > {{path/to/output_tsv}}`
|
||||
|
||||
- Convert field delimiter separated CSV to TSV:
|
||||
|
||||
`csv2tsv -c'{{field_delimiter}}' {{path/to/input_csv}}`
|
||||
|
||||
- Convert semicolon separated CSV to TSV:
|
||||
|
||||
`csv2tsv -c';' {{path/to/input_csv}}`
|
Loading…
Add table
Reference in a new issue