mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
725 B
Plaintext
34 lines
725 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# brew info
|
|
|
|
> Display information for Homebrew installation and formulae.
|
|
> More information: <https://docs.brew.sh/Manpage#info-abv-options-formulacask->.
|
|
|
|
- Display statistics for Homebrew installation:
|
|
|
|
`brew info`
|
|
|
|
- Display more information about a formula or cask:
|
|
|
|
`brew info {{formula|cask}}`
|
|
|
|
- Display verbose information about a formula or cask:
|
|
|
|
`brew info {{[-v|--verbose]}} {{formula|cask}}`
|
|
|
|
- Display information about a formula or cask in JSON format:
|
|
|
|
`brew info --json {{formula|cask}}`
|
|
|
|
- Print JSON of currently installed formulae:
|
|
|
|
`brew info --json --installed`
|
|
|
|
- Display help:
|
|
|
|
`brew info {{[-h|--help]}}`
|