-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConnectToDatabase.sh
23 lines (21 loc) · 943 Bytes
/
ConnectToDatabase.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# author : Abdelrahman Elmansey
######################## Connect To Database ##########################
while [ true ];do
echo -e "${cyan}Enter the name of the Database you want to connect to :${clear}"
read DatabaseName
if [[ $DatabaseName =~ ^[a-zA-Z]+[a-zA-Z_0-9]+$ ]];then
if [[ -e $DatabaseName ]];then
cd $DatabaseName
echo " "
echo -e "${magenta}=======================================(${cyan}Conected by${clear} ${red}$DatabaseName${clear})${magenta}=======================================${clear}"
echo " "
source ../../Database_CRUD_operation_Menu.sh
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