mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
443 B
Plaintext
23 lines
443 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# brew outdated
|
|
|
|
> List outdated casks and formulae.
|
|
> To upgrade everything, use `brew upgrade`.
|
|
> More information: <https://docs.brew.sh/Manpage#outdated-options-formulacask->.
|
|
|
|
- List all outdated casks and formulae:
|
|
|
|
`brew outdated`
|
|
|
|
- List only outdated formulae:
|
|
|
|
`brew outdated --formula`
|
|
|
|
- List only outdated casks:
|
|
|
|
`brew outdated --cask`
|