Delete empty directories
Using find on the bash shell:
find -type d -empty -delete
Using Perl:
perl -MFile::Find -e"finddepth(sub{rmdir},'.')"
Using find on the bash shell:
find -type d -empty -delete
Using Perl:
perl -MFile::Find -e"finddepth(sub{rmdir},'.')"