carlos
10/8/2016 - 9:54 PM

just some commands for a medium article about homebrew

just some commands for a medium article about homebrew

#Any line starting with the symbol # is a comment to help explain the command below it.

#Use this command to list anything that's installed that has a new version to update to.
brew outdated

#Here I can update all outdated items.
brew upgrade `brew outdated`

#Here I check for updates to Homebrew itself.
brew update

#Here I check for any problems with Homebrew.
brew doctor