Some time I would like to unversion a working copy of my subversion project. I know there is a way to get it from svn commands but this how bash or terminal do it:
This a handy script to delete all .svn hidden directories
#!/bin/sh echo "recursively removing .svn folders from" pwd rm -rf `find . -type d -name .svn`