brew*: move to common (#6507)

This commit is contained in:
marchersimon
2021-09-13 09:06:52 +02:00
committed by GitHub
parent 8af1bb1145
commit 4fbb601f63
9 changed files with 0 additions and 0 deletions

View File

@@ -1,28 +0,0 @@
# brew bundle
> Bundler for Homebrew, Homebrew Cask and the Mac App Store.
> More information: <https://github.com/Homebrew/homebrew-bundle>.
- Install packages from a Brewfile at the current path:
`brew bundle`
- Install packages from a specific Brewfile at a specific path:
`brew bundle --file={{path/to/file}}`
- Create a Brewfile from all installed packages:
`brew bundle dump`
- Uninstall all formulae not listed in the Brewfile:
`brew bundle cleanup --force`
- Check if there is anything to install or upgrade in the Brewfile:
`brew bundle check`
- Output a list of all entries in the Brewfile:
`brew bundle list --all`

View File

@@ -1,36 +0,0 @@
# brew cask
> Package manager for macOS applications distributed as binaries.
> More information: <https://github.com/Homebrew/homebrew-cask>.
- Search for formulas and casks:
`brew search {{text}}`
- Install a cask:
`brew cask install {{cask_name}}`
- List all installed casks:
`brew list --cask`
- List installed casks that have newer versions available:
`brew outdated --cask`
- Upgrade an installed cask (if no cask name is given, all installed casks are upgraded):
`brew upgrade --cask {{cask_name}}`
- Uninstall a cask:
`brew cask uninstall {{cask_name}}`
- Uninstall a cask and remove related settings and files:
`brew cask zap {{cask_name}}`
- Display information about a given cask:
`brew cask info {{cask_name}}`