mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 15:42:31 +00:00
18 lines
395 B
Plaintext
18 lines
395 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# brew autoremove
|
|
|
|
> Remove unused formulae previously installed as dependencies.
|
|
> More information: <https://docs.brew.sh/Manpage#autoremove---dry-run>.
|
|
|
|
- Remove all unused formulae:
|
|
|
|
`brew autoremove`
|
|
|
|
- Print what would be removed, but don't actually remove anything:
|
|
|
|
`brew autoremove --dry-run`
|