Created
July 16, 2020 13:38
-
-
Save mrbusche/df0698064db7c48b167af6154177fca1 to your computer and use it in GitHub Desktop.
Delete all folders and contents with name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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