1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/brew-list.md
Nelson Figueroa bfb80d23f3
brew-list: add --pinned example (#15026)
brew list: add --pinned example
2024-12-03 16:15:31 -08:00

28 lines
480 B
Markdown

# brew list
> List installed formulae/casks or their files.
> More information: <https://docs.brew.sh/Manpage#list-ls-options-installed_formulainstalled_cask->.
- List all installed formulae and casks:
`brew list`
- List files belonging to an installed formula:
`brew list {{formula}}`
- List artifacts of a cask:
`brew list {{cask}}`
- List only formulae:
`brew list --formula`
- List only casks:
`brew list --cask`
- List only pinned formulae:
`brew list --pinned`