Files
scm_breeze/uninstall.sh
Wilhelmina Drengwitz e95b9a33a1 Fix printf usage
2017-01-31 15:42:21 -05: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 %s\n" "$HOME/.$rc"
done