find: edit page (#13286)

pull/28/head
Fazle Arefin 2024-07-21 18:26:14 +10:00 committed by GitHub
parent b8fa25ce42
commit df160cadc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,6 @@
`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`