Skip to content

Instantly share code, notes, and snippets.

@rlouapre
Created December 21, 2014 11:35
Show Gist options
  • Save rlouapre/9a32ab7ff526a9e55df5 to your computer and use it in GitHub Desktop.
Save rlouapre/9a32ab7ff526a9e55df5 to your computer and use it in GitHub Desktop.
[windows] [cygwin] Delete recusively all node_modules directory
find . -type d -name 'node_modules' -print0 | xargs -0 -I {} rm -rf "{}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment