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,16 +14,16 @@ source: https://github.com/tldr-pages/tldr.git
- Require all path components to exist:
`realpath --canonicalize-existing {{path/to/file_or_directory}}`
`realpath {{[-e|--canonicalize-existing]}} {{path/to/file_or_directory}}`
- Resolve ".." components before symlinks:
`realpath --logical {{path/to/file_or_directory}}`
`realpath {{[-L|--logical]}} {{path/to/file_or_directory}}`
- Disable symlink expansion:
`realpath --no-symlinks {{path/to/file_or_directory}}`
`realpath {{[-s|--no-symlinks]}} {{path/to/file_or_directory}}`
- Suppress error messages:
`realpath --quiet {{path/to/file_or_directory}}`
`realpath {{[-q|--quiet]}} {{path/to/file_or_directory}}`