Created
February 25, 2018 15:05
-
-
Save clementlecorre/29b265e3a7301a8e357dac9cdf3ff814 to your computer and use it in GitHub Desktop.
Remove all node module folders recursively (Tip to easily gain disk space)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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