Skip to content

Instantly share code, notes, and snippets.

@telekosmos
Created January 14, 2019 20:47
Show Gist options
  • Save telekosmos/fe2416e31be380b14a4bfb0f67d37569 to your computer and use it in GitHub Desktop.
Save telekosmos/fe2416e31be380b14a4bfb0f67d37569 to your computer and use it in GitHub Desktop.
Remove node_modules 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