Recursively Delete All .svn Directories
by Kyle on · Posted in
find . -type d -name .svn -print0 | xargs -0 rm -rf
You can also run the following command:
find . -type d -name .svn -exec 'rm -rf {}\;'
![]()
Search · Sitemap · Contact · Account Center
by Kyle on · Posted in
find . -type d -name .svn -print0 | xargs -0 rm -rf
You can also run the following command:
find . -type d -name .svn -exec 'rm -rf {}\;'
![]()