Skip to content

Instantly share code, notes, and snippets.

@cbschuld
Created September 1, 2020 04:22
Show Gist options
  • Save cbschuld/b14bcdcf013c4ad0b99bd58b505ff600 to your computer and use it in GitHub Desktop.
Save cbschuld/b14bcdcf013c4ad0b99bd58b505ff600 to your computer and use it in GitHub Desktop.
Remove all of the node_modules directories

remove node_modules

Removes all of the node_modules directories in a single command from the CWD

find . -name "node_modules" -type d -exec rm -rvf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment