rmdirr recursively removes empty directories.
rmdirr is written in python, and as such should run on all platforms python supports. Currently however, it has only been tested on linux.
Distributed under the GPL
After announcing rmdirr on freshmeat, I have received several emails informing me of the similarity of rmdirr to find . -type d -depth | xargs rmdir >& /dev/null or find . -depth -type d -exec rmdir '{}' ';' 2>/dev/null