mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 10:47:00 +00:00
26 lines
621 B
Plaintext
26 lines
621 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# brew cleanup
|
|
|
|
> Remove stale lock files and outdated downloads for all formulas and casks.
|
|
> More information: <https://docs.brew.sh/Manpage#cleanup-options-formulacask->.
|
|
|
|
- Remove stale lock files and outdated downloads for all formulas/casks:
|
|
|
|
`brew cleanup`
|
|
|
|
- Remove stale lock files and outdated downloads for a specific formula/cask:
|
|
|
|
`brew cleanup {{formula|cask}}`
|
|
|
|
- Show what would be removed, but do not actually remove anything:
|
|
|
|
`brew cleanup {{[-n|--dry-run]}}`
|
|
|
|
- Display help:
|
|
|
|
`brew cleanup {{[-h|--help]}}`
|