Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-24 00:21:36 +00:00
parent 4e6886aa1f
commit 70f6f2ac08
27 changed files with 174 additions and 69 deletions

View File

@@ -10,11 +10,11 @@ source: https://github.com/tldr-pages/tldr.git
- Copy a file to another location:
`cp {{path/to/source_file.ext}} {{path/to/target_file.ext}}`
`cp {{path/to/source_file}} {{path/to/target_file}}`
- Copy a file into another directory, keeping the filename:
`cp {{path/to/source_file.ext}} {{path/to/target_parent_directory}}`
`cp {{path/to/source_file}} {{path/to/target_parent_directory}}`
- Recursively copy a directory's contents to another location (if the destination exists, the directory is copied inside it):