Last active
October 16, 2020 07:37
-
-
Save miZyind/6e78bb46159ce3126d5afb9706fb760d to your computer and use it in GitHub Desktop.
Calculate the disk usage of node_modules folder of each project and sort the big ones at the top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name node_modules -exec du -sh {} \; -prune | sort -rh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment