Skip to content

Instantly share code, notes, and snippets.

@carlosrojaso
Created September 7, 2019 10:56
Show Gist options
  • Save carlosrojaso/c760a1a97a2f62f0c6b054cf8a0dee87 to your computer and use it in GitHub Desktop.
Save carlosrojaso/c760a1a97a2f62f0c6b054cf8a0dee87 to your computer and use it in GitHub Desktop.
Release node_modules space
find . -name "node_modules" -type d -prune | xargs du -chs
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