Created
January 2, 2021 15:47
-
-
Save antomor/0b78372236b20555e3161a835420e62d to your computer and use it in GitHub Desktop.
Delete all node_modules folders
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
# Mac/Linux | |
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \; | |
# Windows | |
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rm -rf "%d" |
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
# Mac/Linux | |
find . -name "node_modules" -type d -prune -print | xargs du -chs | |
# Windows | |
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" echo %d" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment