Skip to content

Instantly share code, notes, and snippets.

@pi0
Last active May 26, 2019 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pi0/85c71423ae1bdea30f5abe0455ef32f2 to your computer and use it in GitHub Desktop.
Save pi0/85c71423ae1bdea30f5abe0455ef32f2 to your computer and use it in GitHub Desktop.
Clean all `node_modules` to save disk space
for d in `find -name node_modules -type d` ; do [ -d "$d" ] && echo "$d" && rm -rf "$d" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment