Skip to content

Instantly share code, notes, and snippets.

@jaredreich
Last active July 10, 2018 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredreich/96b7450a8b8bd8e28d7fe6e393dce0d1 to your computer and use it in GitHub Desktop.
Save jaredreich/96b7450a8b8bd8e28d7fe6e393dce0d1 to your computer and use it in GitHub Desktop.
Delete all node_modules
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
# or with trash-cli
find . -name node_modules -type d -prune -exec trash {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment