0:00--:--
Keeping your Mac clean can be a difficult task if you use Homebrew to install packages for development and testing purpose and without correctly installing the right packages, it may bloat your system, taking up unwanted storage space.
This one command will uninstall all the packages install through Homebrew.
brew remove --force $(brew list) --ignore-dependencies You can also run.
brew list -1 | xargs brew rm To remove unused archives run.
brew cleanup To remove Cask packages
brew cask remove --force $(brew cask list) If you have any question, leave a comment.