diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..ca7b83a --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,7 @@ +#!/bin/sh +# uninstall by (github: bernardofire) +# Remove line from bashrc and zshrc if present. +for rc in bashrc zshrc; do + sed -i '/scm_breeze/d' "$HOME/.$rc" + printf "== Removed SCM Breeze from '$HOME/.$rc'\n" +done