Pages

Monday, September 27, 2010

Recursively delete .svn directories

Hi!

If you want to delete the .svn directories under a project, you could use this command:


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

No comments:

Post a Comment