Skip to content

Instantly share code, notes, and snippets.

@senthilmpro
Created March 9, 2021 05:45
Show Gist options
  • Save senthilmpro/1df084faf1bc7f4eea6c9e6031796ea7 to your computer and use it in GitHub Desktop.
Save senthilmpro/1df084faf1bc7f4eea6c9e6031796ea7 to your computer and use it in GitHub Desktop.
Remove all node_modules folder - mac terminal command
# https://dev.to/trilon/how-to-delete-all-nodemodules-folders-on-your-machine-43dh
$ cd documents
$ find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment