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

@@ -11,21 +11,21 @@ source: https://github.com/tldr-pages/tldr.git
- Convert to a tab-delimited file (TSV):
`csvformat -T {{data.csv}}`
`csvformat {{[-T|--out-tabs]}} {{data.csv}}`
- Convert delimiters to a custom character:
`csvformat -D "{{custom_character}}" {{data.csv}}`
`csvformat {{[-D|--out-delimiter]}} "{{custom_character}}" {{data.csv}}`
- Convert line endings to carriage return (^M) + line feed:
`csvformat -M "{{
`csvformat {{[-M|--out-lineterminator]}} "{{
}}" {{data.csv}}`
- Minimize use of quote characters:
`csvformat -U 0 {{data.csv}}`
`csvformat {{[-U|--out-quoting]}} 0 {{data.csv}}`
- Maximize use of quote characters:
`csvformat -U 1 {{data.csv}}`
`csvformat {{[-U|--out-quoting]}} 1 {{data.csv}}`