Linux - How to remove only svn directories, Find and remove .svn folders

How to remove only svn directories

Find and remove .svn directories using linux commands

I came around this when I was having a need to remove all the svn directories from my development machine. I use Linux box to develope my application and was having all svn directories inside my application directories which was really annoying. below linux command can be used to remove all unwanted svn files or directories from specific location.

 # find . -name .svn -exec rm -rf {}  ;

The above command will finds and remove all the .svn folders from current path.

The topic on Linux - How to remove only svn directories is posted by - Guru

Hope you have enjoyed, Linux - How to remove only svn directoriesThanks for your time

Tech Bluff