find empty dirs and remove them

on

this can be handled just by one single command:

find . -type d -empty -exec rmdir {} \;

easy he.