Last active
October 11, 2025 13:26
-
-
Save detj/a0685b57f5f40f2d4815ba0443d53d32 to your computer and use it in GitHub Desktop.
List disk usage by homebrew packages
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
| # Usage by formulae | |
| echo "=== Formulae ===" | |
| du -sh $(brew --cellar)/* 2>/dev/null | sort -h | |
| # Usage by casks | |
| echo "=== Casks ===" | |
| du -sh /opt/homebrew/Caskroom/* 2>/dev/null | sort -h |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment