Skip to content

Instantly share code, notes, and snippets.

@trungpv1601
Created August 8, 2019 04:04
Show Gist options
  • Save trungpv1601/175bcb8b420d9abc6cb6e62933fb798a to your computer and use it in GitHub Desktop.
Save trungpv1601/175bcb8b420d9abc6cb6e62933fb798a to your computer and use it in GitHub Desktop.
How to delete ALL node_modules folders on your machine and free up HD space!

List All

$ cd documents
$ find . -name "node_modules" -type d -prune | xargs du -chs

--- Example output ---
25M ./Github/Trilon.io/node_modules
482M ./Github/Some_Demo/node_modules

707M total

Remove All

$ cd documents
$ 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