Created
May 31, 2018 04:28
-
-
Save soenkekluth/ea58554fa9904c537f4420c22811a2eb to your computer and use it in GitHub Desktop.
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/bash | |
brew update | |
brew upgrade | |
echo "outdated casks:" | |
brew cask outdated | |
for c in $(brew cask outdated | xargs -n1); do | |
echo "updating $c" | |
brew cask reinstall "$c" | |
done | |
brew cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment