I type πππππππ πππ to update everything on my Mac.


π» Keeping your macOS system clean and up-to-date doesnβt have to be a chore. If you're a Homebrew user, here's a one-liner I use to update everything in one shotβCLI tools, apps, and even Mac App Store installs:
brew update && brew upgrade && brew cu --all --yes --cleanup && mas upgrade && brew cleanup
β
This command:
β’ Updates Homebrew and formulae
β’ Upgrades all installed packages
β’ Updates all cask applications
β’ Upgrades Mac App Store apps
β’ Cleans up old versions and cached files
To streamline the process, I added it as an alias in my terminal config. Hereβs how you can do it too (for Zsh):
echo "alias brewupdate='brew update && brew upgrade && brew cu --all --yes --cleanup && mas upgrade && brew cleanup'" >> ~/.zshrc
source ~/.zshrc
Now I just type brewupdate
whenever I want to do a full system refresh. Fast, clean, and efficient.
π¦ Tools used:
β’ Homebrew
β’ mas-cli
β’ brew-cask-upgrade
Always happy to swap tips!
Subscribe to my newsletter
Read articles from Bryan Steele directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
