Skip to content

Instantly share code, notes, and snippets.

@lukin0110
Created October 12, 2012 21:18
Show Gist options
  • Save lukin0110/3881587 to your computer and use it in GitHub Desktop.
Save lukin0110/3881587 to your computer and use it in GitHub Desktop.
Recursively delete .svn directories
#!/bin/sh
echo "recursively removing .svn folders from"
pwd
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