Created
November 17, 2019 11:32
-
-
Save hasssan/dcdef2982841fe950ce9419fd3a1c30b to your computer and use it in GitHub Desktop.
Remove all node_modules file
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
# source https://stackoverflow.com/questions/46037728/find-all-node-modules-directories | |
# https://rtmccormick.com/2018/01/10/clear-node-modules-folders-recursively-mac-linux/ | |
find . -name "node_modules" -prune -exec rm -rf '{}' + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment