mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-21 18:15:23 +02:00
brew-bundle: add page (#3469)
This commit is contained in:
parent
24d67a4239
commit
a037cf93ad
1 changed files with 28 additions and 0 deletions
28
pages/osx/brew-bundle.md
Normal file
28
pages/osx/brew-bundle.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue