mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
csvkit: add page (#3386)
This commit is contained in:
parent
6e7bd3baee
commit
a8b4159c9b
1 changed files with 21 additions and 0 deletions
21
pages/common/csvkit.md
Normal file
21
pages/common/csvkit.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# csvkit
|
||||
|
||||
> Manipulation toolkit for CSV files.
|
||||
> See the individual commands: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
|
||||
> More information: <https://csvkit.readthedocs.io/en/0.9.1/cli.html>.
|
||||
|
||||
- Run a command on a CSV file with a custom delimiter:
|
||||
|
||||
`{{cmd}} -d {{delimiter}} {{filename.csv}}`
|
||||
|
||||
- Run a command on a CSV file with a tab as a delimiter (overrides -d):
|
||||
|
||||
`{{cmd}} -t {{filename.csv}}`
|
||||
|
||||
- Run a command on a CSV file with a custom quote character:
|
||||
|
||||
`{{cmd}} -q {{quote_char}} {{filename.csv}}`
|
||||
|
||||
- Run a command on a CSV file with no header row:
|
||||
|
||||
`{{cmd}} -H {{filename.csv}}`
|
Loading…
Add table
Reference in a new issue