That's the reason I made RED. It's a small and simple tool that searches and deletes empty directories recursively below a given start folder. And before deleting ...
28 May 2016 ... Remove Empty Directories won't save much disk space, and there's the distinct possibility that it might break some programs. (Just because a ...
You can call rmdir on every directory, since rmdir will only delete a directory if it is empty: find "$HOME" -type d -exec rmdir {} + 2>/dev/null. If you also ...