I’m migrating some projects from SVN to Git, so I want to get rid of the .svn folders recursively for the project:
find d . -name .svn -exec rm -rf '{}' \; -print
I’m migrating some projects from SVN to Git, so I want to get rid of the .svn folders recursively for the project:
find d . -name .svn -exec rm -rf '{}' \; -print
1 Comment
Other option: rm -rf `find . -type d -name .svn`