Skip to content

Instantly share code, notes, and snippets.

@lemieszek
Created June 17, 2019 06:26
Show Gist options
  • Save lemieszek/40492d57dae45ad9b6bc490fcb7ea316 to your computer and use it in GitHub Desktop.
Save lemieszek/40492d57dae45ad9b6bc490fcb7ea316 to your computer and use it in GitHub Desktop.
Remove all node_modules directories 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