-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDropDatabase.sh
47 lines (45 loc) · 1.7 KB
/
DropDatabase.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# author : Abdelrahman Elmansey
while [ true ];do
echo -e "${cyan}Please Enter Your Database Name , You Want to Remove it :${clear}"
read DatabaseName
if [[ $DatabaseName =~ ^[a-zA-Z]+[a-zA-Z_0-9]+$ ]];then
if [[ -e $DatabaseName ]];then
while [ true ]; do
echo -e "${yellow}are you sure you want to remove the database ${clear}${red}($DatabaseName) :${clear} "
select choice in "yes" "no"
do
case $choice in
"yes")
sudo rm -r $DatabaseName
echo -e "${green}Database deleted successfully${clear}"
break
;;
"no")
echo -e "${magente}good news :)${clear}"
break
;;
*)
echo -e "${red}invaild choice ${clear}"
;;
esac
done
break
# if [[ $answer == "y" ]]
# then
# sudo rm -r $DatabaseName
# echo -e "${green}Database deleted successfully${clear}"
# break
# elif [[ $answer == "n" ]];then
# echo -e "${magente}good news :)${clear}"
# break
# fi
done
break
else
echo -e "${red}The Database Name Not Exist${clear}"
fi
else
echo -e "${red}!! Invalid Name the database Name can't contain the space or special character except dash and can't begin by numbers !!${clear}"
fi
done