in reply to Find Empty directories and removing it
#!/usr/bin/perl use File::Find; finddepth sub { return unless -d; rmdir($_); }, @ARGV; [download]