Files
scm_breeze/uninstall.sh
Bernardo B. Marques b65c880f10 add uninstall script
2012-04-05 04:12:50 -03:00

8 lines
219 B
Bash
Executable File

#!/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