Skip to content

Instantly share code, notes, and snippets.

@Veve2
Created September 1, 2016 07:22
Show Gist options
  • Save Veve2/b236a2d58917a80ba05af47cce2fdc27 to your computer and use it in GitHub Desktop.
Save Veve2/b236a2d58917a80ba05af47cce2fdc27 to your computer and use it in GitHub Desktop.
Removing every node_modules from every projects
(use with caution):
find /www -d 2 -name node_modules -print0 | xargs -0 rm -r
From https://twitter.com/FGRibreau/status/770699612646768644
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment