Tuesday, December 9, 2008

Deleting all .svn folders

Here's something you can do in Ubuntu at the command line if you need to delete all those pesky .svn folders


find . -name .svn -type d -exec rm -rf {} \;


Here "." looks at the current directory. Change the directory to one of your choice.

No comments:

Post a Comment