RSS
 

Recursively removing .svn folders

15 Sep

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`
 
No Comments

Posted in Ubuntu

 

Leave a Reply