forked from elmansey/BashScriptProjectDBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDropTable.sh
35 lines (33 loc) · 1.16 KB
/
DropTable.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
#!/bin/bash
# author : Ahmed Gamal
while [ true ];do
read -p "Please Enter Your table Name , You Want to Remove it : " tableName
if [[ $tableName =~ ^[a-zA-Z]+[a-zA-Z_0-9]+$ ]];then
if [[ -e $tableName ]];then
echo "Are you sure you want to remove the table : "
select choice in "Yes" "No"
do
case $choice in
"Yes")
sudo rm "$tableName"
sudo rm "$tableName meta_data.txt"
echo -e "${green}$tableName deleted successfully${clear}"
break
;;
"No")
echo "good news"
break
;;
*)
echo -e "${red}invalid input please try again${clear}"
;;
esac
done
break
else
echo -e "${red}tableName Name Not Exist${clear}"
fi
else
echo -e "${red}Invalid Name the tableName Name can't contain the space or special character except dash and can't begin by numbers${clear}"
fi
done