Return to Snippet

Revision: 12595
at March 26, 2009 07:00 by wdso


Updated Code
# try first with:
find . -name ".svn" -type d | xargs -n1 echo

# then:
find . -name ".svn" -type d | xargs -n1 rm -R

Revision: 12594
at March 20, 2009 05:51 by wdso


Updated Code
# try first with:
find . ".svn" -type d | xargs -n1 echo

# then:
find . ".svn" -type d | xargs -n1 rm -R

Revision: 12593
at March 20, 2009 05:49 by wdso


Initial Code
# try first with:
find . ".svn" -type d | xargs -n1 echo

# then:
find . ".svn" -type d | xargs -n1 rm

Initial URL


Initial Description


Initial Title
Delete all .svn directories

Initial Tags
svn

Initial Language
Bash