Created
August 27, 2020 12:01
-
-
Save flaxel/8f2b17e39fab3a1d31fef09e2416a7fb to your computer and use it in GitHub Desktop.
Update all homebrew formulae
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
#!/bin/sh | |
# fetch new versions of Homebrew + all formulae | |
brew update | |
# upgrade outdated formulae + casks | |
brew upgrade | |
# remove outdated downloads for all formulae + casks | |
brew cleanup | |
# check system for potential problems | |
brew doctor | |
# check for missing dependencies | |
brew missing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment