Remarkably Useful Shell Script
By chris on November 29th 2007 in /dev/random | 367 views
You want to find and delete all files or directories matching a specific name from a directory tree (in this case, .svn directories that shouldn’t be in the ‘exported’ version):
find . -name ".svn" -exec rm -rf {} \;
