Last active
July 23, 2018 15:04
-
-
Save mul14/60b7d99b5b668f735493 to your computer and use it in GitHub Desktop.
Delete all node_modules and bower_components directories
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
#!/usr/bin/env sh | |
find . -maxdepth 2 -type d -name node_modules -name bower_components -print0 | xargs -0 rm -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment