Skip to content

Instantly share code, notes, and snippets.

@soenkekluth
Created May 31, 2018 04:28
Show Gist options
  • Save soenkekluth/ea58554fa9904c537f4420c22811a2eb to your computer and use it in GitHub Desktop.
Save soenkekluth/ea58554fa9904c537f4420c22811a2eb to your computer and use it in GitHub Desktop.
#!/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