Skip to content

Instantly share code, notes, and snippets.

@yashk
Created July 28, 2011 20:29
Show Gist options
  • Save yashk/1112474 to your computer and use it in GitHub Desktop.
Save yashk/1112474 to your computer and use it in GitHub Desktop.
recursively delete CVS directories
find . -depth -name 'CVS' -exec rm -rf '{}' \; -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment