LinuxCommandLibrary

brew-bundle

Bundler for Homebrew, Homebrew Cask and the Mac App Store.

TLDR

Install packages from a Brewfile at the current path

$ brew bundle
copy


Install packages from a specific Brewfile at a specific path
$ brew bundle --file=[path/to/file]
copy


Create a Brewfile from all installed packages
$ brew bundle dump
copy


Uninstall all formulae not listed in the Brewfile
$ brew bundle cleanup --force
copy


Check if there is anything to install or upgrade in the Brewfile
$ brew bundle check
copy


Output a list of all entries in the Brewfile
$ brew bundle list --all
copy

Copied to clipboard