Update cheatsheets

This commit is contained in:
ivuorinen
2024-07-22 00:15:48 +00:00
parent 839a19265f
commit baba8f052c
5 changed files with 42 additions and 5 deletions

View File

@@ -36,6 +36,6 @@ source: https://github.com/tldr-pages/tldr.git
`find {{root_path}} -daystart -mtime {{-1}} -exec {{tar -cvf archive.tar}} {} \+`
- Find empty (0 byte) files and delete them:
- Find empty files (0 byte) or directories and delete them verbosely:
`find {{root_path}} -type {{f}} -empty -delete`
`find {{root_path}} -type {{f|d}} -empty -delete -print`