shellnotes/uninstall.sh

118 lines
3.5 KiB
Bash
Raw Normal View History

2021-04-03 10:58:06 +02:00
#!usr//bin/env bash
:<<'info'
shellnotes - uninstall.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
clear
echo "Choose an option"
echo "----------------"
echo "1.Uninstall shellnotes and delete all files."
echo "2.Disable shellnotes and all its commands, but keep the files in your system."
echo "3.Enable shellnotes."
echo ""
echo -n "[1,2,3]: " && read option
case $option in 1 )
2021-04-03 10:58:06 +02:00
if [ -e ~/.shellnotes/.shellnotes.sh ]; then
echo -n "Are you sure you want to delete Shellnotes?[Y/N]: " && read delete
case $delete in y|Y|YES|Yes|yes )
cd ~/.shellnotes/
rm -rfv ~/.shellnotes/.* 2>/dev/null
rm -f ~/.shellnotes/* 2>/dev/null
rm -rf ~/.shellnotes/docs 2>/dev/null
rm -rf ~/.shellnotes/util 2>/dev/null
rm -rf ~/.shellnotes/ver 2>/dev/null
rm -rf ~/.shellnotes/logs 2>/dev/null
rm -rf ~/.shellnotes/def 2>/dev/null
2023-08-21 16:50:07 +02:00
rm -rf ~/.shellnotes/sne 2>/dev/null
2021-04-03 10:58:06 +02:00
rm -rf ~/.shellnotes/image 2>/dev/null
cd ..
rmdir .shellnotes
if [ -n "`$SHELL -c 'echo $ZSH_VERSION'`" ]; then
if grep -q 'source ~/.shellnotes/.shellnotes.sh' ~/.zshrc; then
sed -i '/shellnotes/d' .zshrc
clear
echo "Shellnotes is uninstalled"
echo "--------------------------"
echo "It was fun taking notes with you!"
fi
elif [ -n "`$SHELL -c 'echo $BASH_VERSION'`" ]; then
if grep -q 'source ~/.shellnotes/.shellnotes.sh' ~/.bashrc; then
sed -i '/shellnotes/d' ~/.bashrc
clear
echo "Shellnotes is uninstalled"
echo "--------------------------"
echo "It was fun taking notes with you!"
fi
elif [ -n "`$SHELL -c 'echo $CSH_VERSION'`" ]; then
if grep -q 'source ~/.shellnotes/.shellnotes.sh' ~/.cshrc; then
sed -i '/shellnotes/d' ~/.cshrc
clear
echo "Shellnotes is uninstalled"
echo "--------------------------"
echo "It was fun taking notes with you!"
fi
elif [ -n "`$SHELL -c 'echo $KSH_VERSION'`" ]; then
if grep -q 'source ~/.shellnotes/.shellnotes.sh' ~/.kshrc; then
sed -i '/shellnotes/d' ~/.kshrc
clear
echo "Shellnotes is uninstalled"
echo "--------------------------"
echo "It was fun taking notes with you!"
fi
elif [ -n "`$SHELL -c 'echo $FISH_VERSION'`" ]; then
if grep -q 'source ~/.shellnotes/.shellnotes.sh' ~/.fishrc; then
sed -i '/shellnotes/d' ~/.fishrc
clear
echo "Shellnotes is uninstalled"
echo "--------------------------"
echo "It was fun taking notes with you!"
fi
else
echo "Your shell is not supported."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./uninfailed
2021-04-19 21:20:01 +02:00
cd $DIR
2021-04-03 10:58:06 +02:00
fi
esac
else
echo "An error occured."
echo "Shellnotes is not installed."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./uninfailed
2021-04-19 21:20:01 +02:00
cd $DIR
2021-04-03 10:58:06 +02:00
fi
esac
2021-04-03 10:58:06 +02:00
case $option in 2 )
2021-04-03 10:58:06 +02:00
if grep 'return' <~/.shellnotes/.shellnotes.sh >/dev/null; then
echo "Shellnotes is already disabled."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./disfailed
2021-04-19 21:20:01 +02:00
cd $DIR
2021-04-03 10:58:06 +02:00
else
sed -i '2 i\return 0 #Shellnotes is disabled by the user. Do not change this line.' ~/.shellnotes/.shellnotes.sh
echo "Shellnotes is now disabled. To enable, run this script again and choose option (3)."
fi
esac
case $option in 3 )
2021-04-03 10:58:06 +02:00
if grep 'return' <~/.shellnotes/.shellnotes.sh >/dev/null; then
sed -i '2d' ~/.shellnotes/.shellnotes.sh
echo "Shellnotes is now enabled. Please restart your terminal."
else
echo "Shellnotes is already enabled."
2021-04-18 11:51:43 +02:00
cd ~/.shellnotes/util/exec
./enfailed
2021-04-19 21:20:01 +02:00
cd $DIR
2021-04-03 10:58:06 +02:00
fi
esac
2021-04-03 10:58:06 +02:00
case $option in
(*[a-zA-Z]* | "" )
echo "Invalid input."
esac