Update cheatsheets

This commit is contained in:
ivuorinen
2024-08-22 00:15:40 +00:00
parent bef5f39123
commit ec4def1435
7 changed files with 160 additions and 3 deletions

View File

@@ -36,6 +36,6 @@ source: https://github.com/tldr-pages/tldr.git
`mv --verbose {{path/to/source}} {{path/to/target}}`
- Specify target directory (convenient in situations when the target directory has to be the first argument):
- Specify [t]arget directory so that you can use external tools to gather movable files:
`ls | {{parallel|xargs}} mv -t {{path/to/target_directory}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{path/to/target_directory}}`