-
-
Save e10a/7a498a6b35d89bbb452cde9dd8a0990c to your computer and use it in GitHub Desktop.
_brew
This file contains 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
source: https://stackoverflow.com/questions/31968664/upgrade-all-the-casks-installed-via-homebrew-cask | |
brew upgrade --cask | |
# However this will not update casks that do not have versioning information (version :latest) or applications that have a built-in upgrade mechanism (auto_updates true). To reinstall these casks (and consequently upgrade them if upgrades are available), run the upgrade command with the --greedy flag like this: | |
brew upgrade --cask --greedy | |
# To get outdated: | |
brew outdated --cask --greedy --verbose | |
## to update all packages | |
brew upgrade | |
## searching for a cask | |
brew search --cask firefox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment