boredom of ramfree17, in bite size portions. Go here for the full serving: http://ramfree17.net/capsule

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.