Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-27 00:18:38 +00:00
parent 5871f35fe8
commit 9fe6559a97
123 changed files with 660 additions and 357 deletions

View File

@@ -14,12 +14,12 @@ source: https://github.com/tldr-pages/tldr.git
- Reformat a file producing output lines of (at most) `n` characters:
`fmt -w {{n}} {{path/to/file}}`
`fmt {{[-w|--width]}} {{n}} {{path/to/file}}`
- Reformat a file without joining lines shorter than the given width together:
`fmt -s {{path/to/file}}`
`fmt {{[-s|--split-only]}} {{path/to/file}}`
- Reformat a file with uniform spacing (1 space between words and 2 spaces between paragraphs):
`fmt -u {{path/to/file}}`
`fmt {{[-u|--uniform-spacing]}} {{path/to/file}}`