From a037cf93ad690f06aa369efc136866ace2444e1c Mon Sep 17 00:00:00 2001 From: Melvin Gundlach Date: Tue, 29 Oct 2019 15:11:44 +0100 Subject: [PATCH] brew-bundle: add page (#3469) --- pages/osx/brew-bundle.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/osx/brew-bundle.md diff --git a/pages/osx/brew-bundle.md b/pages/osx/brew-bundle.md new file mode 100644 index 0000000000..fa4cbde783 --- /dev/null +++ b/pages/osx/brew-bundle.md @@ -0,0 +1,28 @@ +# brew bundle + +> Bundler for Homebrew, Homebrew Cask and the Mac App Store. +> More information: . + +- 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`