Skip to content

Instantly share code, notes, and snippets.

@antomor
Created January 2, 2021 15:47
Show Gist options
  • Save antomor/0b78372236b20555e3161a835420e62d to your computer and use it in GitHub Desktop.
Save antomor/0b78372236b20555e3161a835420e62d to your computer and use it in GitHub Desktop.
Delete all node_modules folders
# 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"
# 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