Skip to content

Instantly share code, notes, and snippets.

@mhammiche
Last active December 29, 2015 12:49
Show Gist options
  • Save mhammiche/7672743 to your computer and use it in GitHub Desktop.
Save mhammiche/7672743 to your computer and use it in GitHub Desktop.
Recursively remove all CVS files or directory in the current directory
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