brew search text
Search for formulas and casks.
brew info <cask_name>
Display information about a given cask.
brew install --cask <cask_name>
A command that installs App on your Mac using Homebrew Cask.
brew upgrade --cask <cash_name>
A command that updates all outdated Casks.
brew upgrade --cask --greedy <cash_name>
The --greedy
flag is used to upgrade all dependencies of the package being upgraded. Read more..
brew uninstall --cask <cask_name>
A command that uninstalls App on your Mac using Homebrew Cask. The --cask
flag is used to specify that the package being uninstalled is a cask.
brew uninstall --cask --zap <cask_name>
The --zap
flag is used to remove all files associated with the package being uninstalled.
brew uninstall --cask --zap --force <cask_name>
The --force
flag is used to force the uninstallation of the package.
- Find basic documentation on using Homebrew Cask in USAGE.md.