Wednesday, July 13, 2011

How to Find and Remove Hidden .svn Folders in Ubuntu

To delete .svn folders recursively using the command line:

----------------------------------------
Warning: Before you use this command make sure you have changed to the correct directory where you want to apply this. example:
cd /mysvn/path/iwant/to/delete/svn/folders
----------------------------------------

find -name "\.svn" -exec rm -rf {} \;

No comments:

Post a Comment