Created
August 29, 2018 10:40
-
-
Save Berkmann18/57c806b372251c7471c16f612ac44ba3 to your computer and use it in GitHub Desktop.
Remove all node_module folders
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
#!/bin/bash | |
#Source: https://coderwall.com/p/guqrca/remove-all-node_module-folders-recursively | |
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