Brew Operations: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * brew =Commands= ==update== Fetches the latest version of Homebrew and all formulae and upgrades. ==doctor== Chec...") |
(→list) |
||
Line 26: | Line 26: | ||
brew list <''formula''> | brew list <''formula''> | ||
Example: | |||
<syntaxhighlight lang='bash'> | |||
brew list bash | |||
/usr/local/Cellar/bash/4.4.19/bin/bash | |||
/usr/local/Cellar/bash/4.4.19/bin/bashbug | |||
/usr/local/Cellar/bash/4.4.19/include/bash/ (58 files) | |||
/usr/local/Cellar/bash/4.4.19/lib/bash/ (26 files) | |||
/usr/local/Cellar/bash/4.4.19/lib/pkgconfig/bash.pc | |||
/usr/local/Cellar/bash/4.4.19/share/doc/ (10 files) | |||
/usr/local/Cellar/bash/4.4.19/share/info/bash.info | |||
/usr/local/Cellar/bash/4.4.19/share/locale/ (37 files) | |||
/usr/local/Cellar/bash/4.4.19/share/man/ (2 files) | |||
</syntaxhighlight> |
Revision as of 18:22, 20 April 2018
Internal
Commands
update
Fetches the latest version of Homebrew and all formulae and upgrades.
doctor
Checks the Homebrew installation for potential problems and exit with a non-zero status if potential problems are found.
cleanup
Remove old version from cellar for all installed (or specified) formulae. Old downloads from the Homebrew download-cache are deleted.
list
Lists all installed formulae.
With a specific argument, list details about the installed artifacts associated with a specific formula.
brew list
brew list <formula>
Example:
brew list bash
/usr/local/Cellar/bash/4.4.19/bin/bash
/usr/local/Cellar/bash/4.4.19/bin/bashbug
/usr/local/Cellar/bash/4.4.19/include/bash/ (58 files)
/usr/local/Cellar/bash/4.4.19/lib/bash/ (26 files)
/usr/local/Cellar/bash/4.4.19/lib/pkgconfig/bash.pc
/usr/local/Cellar/bash/4.4.19/share/doc/ (10 files)
/usr/local/Cellar/bash/4.4.19/share/info/bash.info
/usr/local/Cellar/bash/4.4.19/share/locale/ (37 files)
/usr/local/Cellar/bash/4.4.19/share/man/ (2 files)