Skip to content

Instantly share code, notes, and snippets.

@clementlecorre
Created February 25, 2018 15:05
Show Gist options
  • Save clementlecorre/29b265e3a7301a8e357dac9cdf3ff814 to your computer and use it in GitHub Desktop.
Save clementlecorre/29b265e3a7301a8e357dac9cdf3ff814 to your computer and use it in GitHub Desktop.
Remove all node module folders recursively (Tip to easily gain disk space)
find . -name "node_modules" -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment