Notes
How to delete empty files in the directory
$ find . -maxdepth 0 -type f -size 0 -delete
Adjust or omit maxdepth
argument to delete in subdirectories, as well.
$ find . -maxdepth 0 -type f -size 0 -delete
Adjust or omit maxdepth
argument to delete in subdirectories, as well.