Skip to content

Instantly share code, notes, and snippets.

@ronerlih
Created September 8, 2021 17:03
Show Gist options
  • Save ronerlih/4b12546ad96f3456f87a2e065c32c820 to your computer and use it in GitHub Desktop.
Save ronerlih/4b12546ad96f3456f87a2e065c32c820 to your computer and use it in GitHub Desktop.
Remove all node_modules subfolders.
# From: https://stackoverflow.com/questions/42950501/delete-node-modules-folder-recursively-from-a-specified-path-using-command-line
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment