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 ikhsanalatsary/2c31e377c8d5e44e6563cbad365f911a to your computer and use it in GitHub Desktop.
Save ikhsanalatsary/2c31e377c8d5e44e6563cbad365f911a to your computer and use it in GitHub Desktop.
Delete all node_modules folders RECURSIVELY
#!/bin/bash
# this will find all node_modules above your path and will remove them
find . | grep /node_modules$ | grep -v /node_modules/ | xargs rm -fRv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment