Last active
October 8, 2016 22:19
-
-
Save rootscript/4d16516b14fc2a1dd7be188cda668839 to your computer and use it in GitHub Desktop.
just some commands for a medium article about homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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