Skip to content

Instantly share code, notes, and snippets.

@brokenmass
Created December 3, 2018 09:07
Show Gist options
  • Save brokenmass/95782d6e72b4ca5144152034435f6582 to your computer and use it in GitHub Desktop.
Save brokenmass/95782d6e72b4ca5144152034435f6582 to your computer and use it in GitHub Desktop.
# Recursively remove all node_modules folder
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