I have been a Macintosh user for quite some time now and I have never, not once, not a single time, correctly distinguished "brew update" from "brew upgrade" on the first try

@marcoarment Similar to what others said. I add this alias to my bash/zsh profile on all my Macs:

`alias upall='brew update && brew upgrade'`

And for consistency I do the same on my ubuntu/debian servers

`alias upall='sudo apt update && sudo apt upgrade'`

So now I just can `upall` on any cli I touch to pull the main package updates.