Created
February 11, 2022 14:48
-
-
Save mrbusche/7a9d4dc9170d5cee8b8532b9709b221e to your computer and use it in GitHub Desktop.
prune folders recursively
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
# view directories | |
find . -type d -name node_modules -prune | |
#actually prune them | |
find . -type d -name node_modules -prune -exec rm -rf {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment