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
Delete Empty Directories
// commands to recursively delete empty directories below the current one
// (use at your own risk, as the slightest mistake WILL destroy
// all of your data - Linux)
find -depth -type d -empty -exec rmdir {} \;





