Hapus file kosong file

# This will delete all empty files in directory /tmp
find /tmp -size  0 -print -delete
Tame Tortoise