mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
18 lines
492 B
Markdown
18 lines
492 B
Markdown
# Clean Up Old Homebrew Files
|
|
|
|
If you've been using [Homebrew](https://github.com/Homebrew/homebrew) for a
|
|
while, you may have built up some cruft in the form old and outdated files.
|
|
These will not be cleaned up automatically. You have do tell Homebrew to do
|
|
so. This can be done with the following command.
|
|
|
|
```bash
|
|
$ brew cleanup
|
|
```
|
|
|
|
This command will report what files it cleans up as well as how much disk
|
|
space it was able to clear.
|
|
|
|
See `man brew` for more details.
|
|
|
|
h/t Dorian Karter
|