How to delete all zero length files in a directory tree

find . -type f -size 0 -print0 | xargs -0 rm -f ...