Last active
June 29, 2016 09:59
-
-
Save herrkessler/d21c1b0c745434b9687e3fbfb67fe474 to your computer and use it in GitHub Desktop.
deleting all node_modules and bower_components
This file contains hidden or 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 '{}' + | |
find . -name "bower_components" -exec rm -rf '{}' + | |
from https://coderwall.com/p/guqrca/remove-all-node_module-folders-recursively |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment