DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Removing Files Of Size Zero
// description of your code here
This will delete all files in the current directory with size == 0.
find . -type f -size 0k -exec rm {} \; | awk '{ print $8 }'





