March 6 Remove empty directories using *nix find find -depth -type d -empty -exec rmdir {} ; The -depth parameter tells find to start from the innermost directory first and work its way to the top level. Category: Top of my head | LEAVE A COMMENT