Skip to content

Instantly share code, notes, and snippets.

@richardnfag
Created December 10, 2020 23:44
Show Gist options
  • Save richardnfag/acc2466d1c7f8a72f955609efe8403bc to your computer and use it in GitHub Desktop.
Save richardnfag/acc2466d1c7f8a72f955609efe8403bc to your computer and use it in GitHub Desktop.
Delete all node_modules folders in a directory
find . -name 'node_modules' -type d -prune -print -exec rm -rfv '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment