Skip to content

Instantly share code, notes, and snippets.

@amielucha
Created November 17, 2018 16:10
Show Gist options
  • Save amielucha/f2291fc0c2cac6dd28c4ed37bc996678 to your computer and use it in GitHub Desktop.
Save amielucha/f2291fc0c2cac6dd28c4ed37bc996678 to your computer and use it in GitHub Desktop.
Remove node_modules folder recursively
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