Got a site full of .svn directories that you don't want.........
[code]
find . -type d -name ‘.svn’ -print0 | xargs -0 rm -rdf
[/code]
from
http://devnulled.com/content/2005/10/unix-command-to-remove-subversion-s...
Got a site full of .svn directories that you don't want.........
[code]
find . -type d -name ‘.svn’ -print0 | xargs -0 rm -rdf
[/code]
from
http://devnulled.com/content/2005/10/unix-command-to-remove-subversion-s...
Post new comment