I type π’ƒπ’“π’†π’˜π’–π’‘π’…π’‚π’•π’† to update everything on my Mac.

Bryan SteeleBryan Steele
1 min read

πŸ’» 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!

0
Subscribe to my newsletter

Read articles from Bryan Steele directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Bryan Steele
Bryan Steele