Monday, April 5, 2010

Recursively remove .svn files

Following command can be used to recursively remove .svn files.

Following command can be used to list out .svn files.

find . -type d -name .svn

Following command can be used to remove all .svn files.
 
rm -rf `find . -type d -name .svn`

No comments: