Skip to content

Instantly share code, notes, and snippets.

@lukebayes
Created April 17, 2009 17:59
Show Gist options
  • Save lukebayes/97162 to your computer and use it in GitHub Desktop.
Save lukebayes/97162 to your computer and use it in GitHub Desktop.
Remove all .svn folders forward of the current location
#!/bin/bash
find . -name .svn | xargs rm -rf $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment