Listing empty folders
This will list all empty folders from the current working directory and down.
|
1 |
find . -type d -empty -exec echo {} \; |
Deleting empty folders
This will delete all empty folders from the current working directory and down, no questions will be asked.
|
1 |
find . -type d -empty -exec rm -rf {} \; |
More tricks will be added as I have need for them, or if you post nice suggestions.
