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

@@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git
- Fold lines in a fixed width:
`fold --width {{width}} {{path/to/file}}`
`fold {{[-w|--width]}} {{width}} {{path/to/file}}`
- Count width in bytes (the default is to count in columns):
`fold --bytes --width {{width_in_bytes}} {{path/to/file}}`
`fold {{[-b|--bytes]}} {{[-w|--width]}} {{width_in_bytes}} {{path/to/file}}`
- Break the line after the rightmost blank within the width limit:
`fold --spaces --width {{width}} {{path/to/file}}`
`fold {{[-s|--spaces]}} {{[-w|--width]}} {{width}} {{path/to/file}}`