Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save irfanbaigse/9f93c9a39efed81b82455f7097b117cf to your computer and use it in GitHub Desktop.
Save irfanbaigse/9f93c9a39efed81b82455f7097b117cf to your computer and use it in GitHub Desktop.
delete all node_modules
# 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