-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbash.sh
More file actions
126 lines (95 loc) · 3.16 KB
/
bash.sh
File metadata and controls
126 lines (95 loc) · 3.16 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/bin/bash
echo `clear`
# Usage: license
#Copyright (c) 2020 Abbas Haroon
#Permission is hereby granted, free of charge, to any person obtaining
#a copy of this software and associated documentation files (the
#\"Software\"), to deal in the Software without restriction, including
#without limitation the rights to use, copy, modify, merge, publish,
#distribute, sublicense, and/or sell copies of the Software, and to
#permit persons to whom the Software is furnished to do so, subject to
#the following conditions:
#The above copyright notice and this permission notice shall be
#included in all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,
#EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
#NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
#LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
#OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
#WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
# Define SSH Accounts and assign them to a variable
#Example:
# Name: A name to use and identify an account
# Ip/Host: Ip/Host of the server to connect to
# User: SSH User
# Port: The port on which the client will connect with ssh
# Key: SSH key to login, if no key is provided then user will be promoted for a password
#
#
# Name Ip/Host User Port Key File Path
#server1=("hosting2" "google.com" "root2" 22 "/var/key2.pem")
example=("hosting" "127.0.0.1" "root" "" "")
#Then add each of above server variable as item to MAIN_ARRAY below e.g variable[@]
MAIN_ARRAY=(
# server1[@]
example[@]
)
echo "Available Servers:"
# Loop and print it. Using offset and length to extract values
COUNT=${#MAIN_ARRAY[@]}
for ((i=0; i<$COUNT; i++))
do
vName=${!MAIN_ARRAY[i]:0:1}
vIp=${!MAIN_ARRAY[i]:1:1}
vUser=${!MAIN_ARRAY[i]:2:1}
vPort=${!MAIN_ARRAY[i]:3:1}
echo "${i}. ${vName} ${vUser}@${vIp}"
done
read -p "Choose a server by entering it's id/name: " choosenServer
for ((i=0; i<$COUNT; i++))
do
vName=${!MAIN_ARRAY[i]:0:1}
if [ $vName = $choosenServer ] || [ $i = $choosenServer ]
then
connectServer=${i}
fi
done
cName="${!MAIN_ARRAY[connectServer]:0:1}"
cIp="${!MAIN_ARRAY[connectServer]:1:1}"
cUser="${!MAIN_ARRAY[connectServer]:2:1}"
cPort="${!MAIN_ARRAY[connectServer]:3:1}"
cPath="${!MAIN_ARRAY[connectServer]:4:1}"
if [ -z $cName ]
then
echo -n "Server Name Not Found"
read cName
fi
if [ -z $cIp ]
then
echo -n "Ip Not Found. Please Provide One: "
read cIp
fi
if [ -z $cUser ]
then
echo -n "Server User Not Found. Please Provide One: "
read cUser
fi
if [ -z $cPort ]
then
echo -n "Port not Set. Please provide one or press Enter for Default(22): "
read cPort
if [ -z $cPort ]
then
cPort=22
fi
fi
if [ -z $cPath ]
then
# echo "Key file not found!"
echo "Running: ssh ${cUser}@${cIp} -p ${cPort}"
ssh "${cUser}@${cIp}" \-p "${cPort}"
else
echo "Running: ssh ${cUser}@${cIp} -i ${cPath} -p ${cPort}"
ssh "${cUser}@${cIp}" \-i "${cPath}" \-p "${cPort}"
fi