tldr/pages/common/brew-cask.md

37 lines
740 B
Markdown
Raw Normal View History

2017-05-22 14:49:40 +01:00
# brew cask
> Package manager for macOS applications distributed as binaries.
> More information: <https://github.com/Homebrew/homebrew-cask>.
2017-05-22 14:49:40 +01:00
2018-08-25 11:59:15 +01:00
- Search for formulas and casks:
`brew search {{text}}`
2017-05-22 14:49:40 +01:00
- Install a cask:
`brew cask install {{cask_name}}`
- List all installed casks:
`brew list --cask`
2017-05-22 14:49:40 +01:00
- List installed casks that have newer versions available:
`brew outdated --cask`
2017-05-22 14:49:40 +01:00
- Upgrade an installed cask (if no cask name is given, all installed casks are upgraded):
2017-05-22 14:49:40 +01:00
`brew upgrade --cask {{cask_name}}`
2017-05-22 14:49:40 +01:00
- Uninstall a cask:
`brew cask uninstall {{cask_name}}`
- Uninstall a cask and remove related settings and files:
`brew cask zap {{cask_name}}`
2017-05-22 14:49:40 +01:00
- Display information about a given cask:
`brew cask info {{cask_name}}`