Skip to content

Instantly share code, notes, and snippets.

@eribeiro
Created August 17, 2012 03:22
Show Gist options
  • Save eribeiro/3375655 to your computer and use it in GitHub Desktop.
Save eribeiro/3375655 to your computer and use it in GitHub Desktop.
Recursively remove .svn files from a directory tree
# Remove all the .svn directories below the current directory tree
# Credit: Zed Shaw, at the Mongrel mailing list.
#!/bin/bash
find . -name ".svn" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment