1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 16:42:10 +02:00
tldr/pages/common/csvcut.md
2016-01-28 15:11:53 -05:00

20 lines
453 B
Markdown

# csvcut
> Filter and truncate CSV files. Like Unix's `cut` command, but for tabular data.
> Included in csvkit.
- Print indices and names of all columns:
`csvcut -n {{data.csv}}`
- Extract the first and third columns:
`csvcut -c {{1,3}} {{data.csv}}`
- Extract all columns **except** the fourth one:
`csvcut -C {{4}} {{data.csv}}`
- Extract the columns named "id" and "first name" (in that order):
`csvcut -c {{id,"first name"}} {{data.csv}}`