Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keepscoding/20dcf356004ea454f3d4c8b5629ec602 to your computer and use it in GitHub Desktop.
Save keepscoding/20dcf356004ea454f3d4c8b5629ec602 to your computer and use it in GitHub Desktop.
Remove all node_module folders recursively
find . -name "node-modules" -exec rm -rf '{}' +
@keepscoding
Copy link
Author

fixed from "node_modules" to node-modules"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment