Skip to content

Instantly share code, notes, and snippets.

@mrbusche
Created July 16, 2020 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrbusche/df0698064db7c48b167af6154177fca1 to your computer and use it in GitHub Desktop.
Save mrbusche/df0698064db7c48b167af6154177fca1 to your computer and use it in GitHub Desktop.
Delete all folders and contents with name
# delete all folders with name of .idea
find . -type d -name .idea -prune -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment