Skip to content

Instantly share code, notes, and snippets.

@roundrop
Forked from mxcl/uninstall_homebrew.sh
Created March 18, 2012 08:53
Show Gist options
  • Save roundrop/2070051 to your computer and use it in GitHub Desktop.
Save roundrop/2070051 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!
# check sudo
if [ "`whoami`" != "root" ]; then
echo "You need to be root to run this!"
exit 1
fi
# uninstall
set -e
cd `brew --prefix`
git checkout master
git ls-files -z | pbcopy
rm -rf Cellar
bin/brew prune
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