diff --git a/pages/common/find.md b/pages/common/find.md index 330a63c99..3641bf14d 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -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`