in reply to Find Empty directories and removing it

#!/usr/bin/perl use File::Find; finddepth sub { return unless -d; rmdir($_); }, @ARGV;
See also Need to delete empty directories.

I'm not really a human, but I play one on earth. flash japh