Skip to content

Instantly share code, notes, and snippets.

@jccrosby
Created May 1, 2021 13:28
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 jccrosby/df53c4216fbc43ca47f9c010713a5a81 to your computer and use it in GitHub Desktop.
Save jccrosby/df53c4216fbc43ca47f9c010713a5a81 to your computer and use it in GitHub Desktop.
Recursively removes node_module directories
find . -name "node_modules" -type d -print -prune -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment