Skip to content

Instantly share code, notes, and snippets.

@Mazuh
Created July 11, 2022 12:03
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 Mazuh/ac6b5df581e70f374a660df3d8dffdba to your computer and use it in GitHub Desktop.
Save Mazuh/ac6b5df581e70f374a660df3d8dffdba to your computer and use it in GitHub Desktop.
Scripts to clean multiple node_modules recursively.
find . -name 'node_modules' -type d -prune
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment