Wednesday, April 15, 2009

Removing all the .svn directories command

Its very easy to delete all the .svn directories recursively by issuing the below command.

rm -rf `find . -type d -name .svn`

This will delete all the folders with name .svn inside the current working directory and recursively inside all other sub-directories too.

No comments:

Post a Comment