Skip to content

Instantly share code, notes, and snippets.

@venj
Created May 22, 2011 09:24
Show Gist options
  • Save venj/985298 to your computer and use it in GitHub Desktop.
Save venj/985298 to your computer and use it in GitHub Desktop.
clean up brew old packages. There will be some warnings and errors, just ignore them.
#!/bin/bash
for pack_name in $(ls $(brew --prefix)/Cellar);do
brew cleanup $pack_name 2> /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment