Skip to content

Instantly share code, notes, and snippets.

@jaredreich
Last active July 10, 2018 13:02
Show Gist options
  • Select an option

  • Save jaredreich/96b7450a8b8bd8e28d7fe6e393dce0d1 to your computer and use it in GitHub Desktop.

Select an option

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