mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
627 B
Plaintext
34 lines
627 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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 {{[ls|list]}}`
|
|
|
|
- List files belonging to an installed formula:
|
|
|
|
`brew {{[ls|list]}} {{formula}}`
|
|
|
|
- List artifacts of a cask:
|
|
|
|
`brew {{[ls|list]}} {{cask}}`
|
|
|
|
- List only formulae:
|
|
|
|
`brew {{[ls|list]}} --formula`
|
|
|
|
- List only casks:
|
|
|
|
`brew {{[ls|list]}} --cask`
|
|
|
|
- List only pinned formulae:
|
|
|
|
`brew {{[ls|list]}} --pinned`
|