mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
csvkit: update page (#10238)
This commit is contained in:
parent
aeb50e5139
commit
8900a6f9ea
1 changed files with 5 additions and 5 deletions
|
@ -1,21 +1,21 @@
|
||||||
# csvkit
|
# csvkit
|
||||||
|
|
||||||
> Manipulation toolkit for CSV files.
|
> Manipulation toolkit for CSV files.
|
||||||
> See the individual commands: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
|
> See also: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`.
|
||||||
> More information: <https://csvkit.readthedocs.io/en/0.9.1/cli.html>.
|
> More information: <https://csvkit.readthedocs.io/en/0.9.1/cli.html>.
|
||||||
|
|
||||||
- Run a command on a CSV file with a custom delimiter:
|
- Run a command on a CSV file with a custom delimiter:
|
||||||
|
|
||||||
`{{cmd}} -d {{delimiter}} {{filename.csv}}`
|
`{{command}} -d {{delimiter}} {{path/to/file.csv}}`
|
||||||
|
|
||||||
- Run a command on a CSV file with a tab as a delimiter (overrides -d):
|
- Run a command on a CSV file with a tab as a delimiter (overrides -d):
|
||||||
|
|
||||||
`{{cmd}} -t {{filename.csv}}`
|
`{{command}} -t {{path/to/file.csv}}`
|
||||||
|
|
||||||
- Run a command on a CSV file with a custom quote character:
|
- Run a command on a CSV file with a custom quote character:
|
||||||
|
|
||||||
`{{cmd}} -q {{quote_char}} {{filename.csv}}`
|
`{{command}} -q {{quote_char}} {{path/to/file.csv}}`
|
||||||
|
|
||||||
- Run a command on a CSV file with no header row:
|
- Run a command on a CSV file with no header row:
|
||||||
|
|
||||||
`{{cmd}} -H {{filename.csv}}`
|
`{{command}} -H {{path/to/file.csv}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue