Flavio Castelli

Debugging my life

Feb 15, 2006 - 1 minute read - Comments - bash

Svn cleaner

This simple program removes recursively all .svn directories.

Requirements: In order to run remove-svn requires python.

Synopsis: remove-svn syntax is: remove-svn dir in this way remove-svn will recursively remove all .svn directories found under dir.
An example: remove-svnpwd``

UPDATE A faster way for removing .svn file through this simple bash command: find ./ -name *svn* | xargs rm -rf

The old script has been removed.

QtCanvas Regexp with boost

comments powered by Disqus