Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-23 00:19:06 +00:00
parent 8ba6f7fc9e
commit 94c28849c9
382 changed files with 1183 additions and 1056 deletions

View File

@@ -7,20 +7,20 @@ source: https://github.com/tldr-pages/tldr.git
> 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>.
> More information: <https://csvkit.readthedocs.io/en/latest/cli.html>.
- Run a command on a CSV file with a custom delimiter:
`{{command}} -d {{delimiter}} {{path/to/file.csv}}`
`{{command}} {{[-d|--delimiter]}} {{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}}`
`{{command}} {{[-t|--tabs]}} {{path/to/file.csv}}`
- Run a command on a CSV file with a custom quote character:
`{{command}} -q {{quote_char}} {{path/to/file.csv}}`
`{{command}} {{[-q|--quotechar]}} {{quote_char}} {{path/to/file.csv}}`
- Run a command on a CSV file with no header row:
`{{command}} -H {{path/to/file.csv}}`
`{{command}} {{[-H|--no-header-row]}} {{path/to/file.csv}}`