bml-cli/contactsmenu.sh

34 lines
547 B
Bash
Raw Normal View History

2021-04-27 23:10:51 +05:00
echo ""
echo "Contacts"
echo ""
echo "1 - List Contacts"
echo "2 - Add Contact"
echo "3 - Delete Conact"
echo "4 - Go back"
echo "5 - Exit"
echo ""
printf 'Please Input: '
read -r CONTATCS
if [ "$CONTATCS" = "1" ]
then
source listcontact.sh
elif [ "$CONTATCS" = "2" ]
then
source addcontact.sh
elif [ "$CONTATCS" = "3" ]
then
source delete contact.sh
elif [ "$CONTATCS" = "4" ]
then
source mainmenu.sh
elif [ "$CONTATCS" = "5" ]
then
rm $COOKIE
exit
else
echo "${red}There was an error${reset}" 1>&2
clear
source contactsmenu.sh
fi