Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

26
csvkit Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# csvkit
> Manipulation toolkit for CSV files.
> See also: `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:
`{{command}} -d {{delimiter}} {{path/to/file.csv}}`
- Run a command on a CSV file with a tab as a delimiter (overrides -d):
`{{command}} -t {{path/to/file.csv}}`
- Run a command on a CSV file with a custom quote character:
`{{command}} -q {{quote_char}} {{path/to/file.csv}}`
- Run a command on a CSV file with no header row:
`{{command}} -H {{path/to/file.csv}}`