Skip to content

Instantly share code, notes, and snippets.

@karl82
Last active March 25, 2016 23:05
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 karl82/6e0a9bbb7af3ae065870 to your computer and use it in GitHub Desktop.
Save karl82/6e0a9bbb7af3ae065870 to your computer and use it in GitHub Desktop.
brew cask upgrade existing
for c in `brew cask list`; do ! brew cask info $c | grep -qF "Not installed" || (brew cask uninstall --force $c && brew cask install $c); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment