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 {} \;
DZone Snippets > shantanuo > linux
12388 users tagging and storing useful source code snippets
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
shantanu oak http://oksoft.blogspot.com
// 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 {} \;