Skip to content

Instantly share code, notes, and snippets.

@jah2488
Forked from mxcl/uninstall_homebrew.sh
Created February 26, 2012 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jah2488/1919906 to your computer and use it in GitHub Desktop.
Save jah2488/1919906 to your computer and use it in GitHub Desktop.
Uninstall Homebrew
#!/bin/sh
# Just copy and paste the lines below (all at once, it won't work line by line!)
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY!
set -e
cd `brew --prefix`
git ls-files -z | pbcopy
sudo rm -rf Cellar
bin/brew prune
sudo pbpaste | xargs -0 rm
rm -r Library/Homebrew Library/Aliases Library/Formula Library/Contributions
test -d Library/LinkedKegs && rm -r Library/LinkedKegs
rmdir -p bin Library share/man/man1 2> /dev/null
rm -rf .git
rm -rf ~/Library/Caches/Homebrew
rm -rf ~/Library/Logs/Homebrew
rm -rf ~/Library/Caches/Homebrew
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment