Linux – How to delete empty directories

Sometimes, we may have a bunch of empty directories left behind by certain scripts or programs. The below command allows us to get rid of these.

find <path-parent> -empty -type d -delete


eg. find . -empty -type d -delete