Skip to content

Instantly share code, notes, and snippets.

@keichi
Created August 13, 2014 02:19
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 keichi/ebbf400abf19be1e8772 to your computer and use it in GitHub Desktop.
Save keichi/ebbf400abf19be1e8772 to your computer and use it in GitHub Desktop.
One-liner for fish shell to update applications installed with homebrew-cask
for app in (brew cask list); if brew cask info $app | grep -qF "Not installed"; brew cask install $app; end ; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment