Adding an uninstaller tool

This commit is contained in:
Robby Russell 2009-08-31 15:00:38 -07:00
commit ccd3a191dc
3 changed files with 28 additions and 0 deletions

View file

@ -26,4 +26,8 @@ function remote_console() {
function zsh_stats() {
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
}
function uninstall_oh_my_zsh() {
/bin/sh $ZSH/tools/uninstall.sh
}