update "Find empty (0 byte) files"

This commit is contained in:
bonnie 2020-07-18 22:37:25 +08:00
parent ba73fb49d2
commit 7857f80844

View File

@ -837,8 +837,10 @@ find . -name "*.mso" -size -74c -delete
# M for MB, etc
```
##### Find and delete empty (0 byte) files
##### Find empty (0 byte) files
```bash
find . -type f -empty
# to further delete all the empty files
find . -type f -empty -delete
```