Skip to content

Instantly share code, notes, and snippets.

@detj
Last active October 11, 2025 13:26
Show Gist options
  • Save detj/a0685b57f5f40f2d4815ba0443d53d32 to your computer and use it in GitHub Desktop.
Save detj/a0685b57f5f40f2d4815ba0443d53d32 to your computer and use it in GitHub Desktop.
List disk usage by homebrew packages
# 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