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

@@ -19,12 +19,12 @@ source: https://github.com/tldr-pages/tldr.git
- Patch a file writing the result to a different file:
`patch {{path/to/input_file}} -o {{path/to/output_file}} < {{patch.diff}}`
`patch {{path/to/input_file}} {{[-o|--output]}} {{path/to/output_file}} < {{patch.diff}}`
- Apply a patch to the current directory:
`patch -p1 < {{patch.diff}}`
`patch {{[-p|--strip]}} 1 < {{patch.diff}}`
- Apply the reverse of a patch:
`patch -R < {{patch.diff}}`
`patch {{[-R|--reverse]}} < {{patch.diff}}`