Удалить пустые файлы Bash
# This will delete all empty files in directory /tmp
find /tmp -size 0 -print -delete
Tame Tortoise
# This will delete all empty files in directory /tmp
find /tmp -size 0 -print -delete