diff options
| author | Max Howell | 2012-03-06 20:12:42 +0000 |
|---|---|---|
| committer | Max Howell | 2012-03-06 20:28:06 +0000 |
| commit | 158efd8c9a61b91caccdcb2e6b98f7d649cae93c (patch) | |
| tree | cd8ef74820a11050df7e9aa4e84b0925b7770b61 /Library/Contributions | |
| parent | 1b4b8a722ecb37bfb4e99b16881075ee2f5f67c0 (diff) | |
| download | brew-158efd8c9a61b91caccdcb2e6b98f7d649cae93c.tar.bz2 | |
`brew cleanup` cleans up the download-cache
Manpage updated.
The -s switch is "scrub" and removes downloads for uninstall formula which are downloads for the latest version of that formula still.
Please NOTE cache is NOT cleaned if a formula argument is provided. I couldn't be bothered. Patches welcome :)
Closes Homebrew/homebrew#2923.
Diffstat (limited to 'Library/Contributions')
| -rw-r--r-- | Library/Contributions/manpages/brew.1.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md index 022705ba2..0dd115f32 100644 --- a/Library/Contributions/manpages/brew.1.md +++ b/Library/Contributions/manpages/brew.1.md @@ -51,15 +51,20 @@ For the full command list, see the COMMANDS section. * `cat` <formula>: Display the source to <formula>. - * `cleanup [--force] [-n]` [<formulae>]: + * `cleanup [--force] [-ns]` [<formulae>]: For all installed or specific formulae, remove any older versions from the cellar. By default, does not remove out-of-date keg-only brews, as other - software may link directly to specific versions. + software may link directly to specific versions. In addition old downloads from + the Homebrew download-cache are deleted. If `--force` is passed, remove out-of-date keg-only brews as well. If `-n` is passed, show what would be removed, but do not actually remove anything. + If `-s` is passed, scrubs the cache, removing downloads for even the latest + versions of formula. Note downloads for any installed formula will still not be + deleted. If you want to delete those too: `rm -rf $(brew --cache)` + * `create [--autotools|--cmake] [--no-fetch]` <URL>: Generate a formula for the downloadable file at <URL> and open it in `EDITOR`. Homebrew will attempt to automatically derive the formula name |
