Skip to content

Instantly share code, notes, and snippets.

@rootscript
Last active October 8, 2016 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rootscript/4d16516b14fc2a1dd7be188cda668839 to your computer and use it in GitHub Desktop.
Save rootscript/4d16516b14fc2a1dd7be188cda668839 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment