Skip to content

Instantly share code, notes, and snippets.

@hasssan
Created November 17, 2019 11:32
Show Gist options
  • Save hasssan/dcdef2982841fe950ce9419fd3a1c30b to your computer and use it in GitHub Desktop.
Save hasssan/dcdef2982841fe950ce9419fd3a1c30b to your computer and use it in GitHub Desktop.
Remove all node_modules file
# 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