How to remove all old and outdated brew packages on MacOS

To remove all old and outdated packages installed with Homebrew on MacOS, you can use the following command:

brew cleanup

This command will remove any older versions of installed packages, as well as any cache files, logs, and other unnecessary files. You can also use the brew upgrade command to upgrade all installed packages to their latest version, followed by the brew cleanup command to remove the older versions.

Leave a Comment