Created
November 20, 2019 00:38
-
-
Save ngtrieuvi92/60688999dd0123a455bb247bb9f6bb50 to your computer and use it in GitHub Desktop.
delete all node_modules
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
# Find add 'node_modules' | |
find . -name "node_modules" -type d -prune -print | xargs du -chs | |
# Delete all | |
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment