Last active
May 12, 2019 10:38
-
-
Save yevhenorlov/f01eadbc55f42b7dbfb9a2dfbcee528f to your computer and use it in GitHub Desktop.
remove node_modules recursively starting from current folder
This file contains 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
# remove node_modules recursively starting from current folder | |
find . -name "node_modules" -exec rm -rf '{}' + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment