Skip to content

Instantly share code, notes, and snippets.

@73nko
Created July 11, 2020 16:45
Show Gist options
  • Save 73nko/c291fb2e29eff862bddc0df48acf25d3 to your computer and use it in GitHub Desktop.
Save 73nko/c291fb2e29eff862bddc0df48acf25d3 to your computer and use it in GitHub Desktop.
Remove all node_modules in your computer
find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment