-
-
Save einthusan/6921b0be9013db267c0f to your computer and use it in GitHub Desktop.
Find and remove svn files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// find .svn files | |
find . -type d -name .svn | |
// remove .svn files | |
rm -rf `find . -type d -name .svn` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment