How to recursively delete folders
I keep searching for this command in Linux, here is how to recursively delete folders:
rm -fr `find . -name foldername`
I like to use this command to clean a repository of subversion folders, for example:
rm -fr `find . -name .svn`
Labels: Linux