mirror of https://github.com/CrimsonTome/tldr.git
21 lines
396 B
Markdown
21 lines
396 B
Markdown
# in2csv
|
|
|
|
> Converts various tabular data formats into CSV.
|
|
> Included in csvkit.
|
|
|
|
- Convert an XLS file to CSV:
|
|
|
|
`in2csv {{data.xls}}`
|
|
|
|
- Convert a DBF file to a CSV file:
|
|
|
|
`in2csv {{data.dbf}} > {{data.csv}}`
|
|
|
|
- Convert a specific sheet from an XLSX file to CSV:
|
|
|
|
`in2csv --sheet={{sheet_name}} {{data.xlsx}}`
|
|
|
|
- Pipe a JSON file to in2csv:
|
|
|
|
`cat {{data.json}} | in2csv -f json > {{data.csv}}`
|