Skip to content

Instantly share code, notes, and snippets.

@datacodesolutions
Created September 15, 2012 23:59
Show Gist options
  • Save datacodesolutions/3730437 to your computer and use it in GitHub Desktop.
Save datacodesolutions/3730437 to your computer and use it in GitHub Desktop.
Linux Commands
#find all directories with a certain name and delete them
find ./ -type d -name "CVS" -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment