-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitmenu.sh
141 lines (123 loc) · 2.92 KB
/
gitmenu.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/bash
# A menu driven shell script to run git commands
## ----------------------------------
# Step #1: Define variables
# ----------------------------------
EDITOR=vim
PASSWD=/etc/passwd
RED='\033[0;41;30m'
STD='\033[0;0;39m'
# ----------------------------------
# Step #2: User defined functions
# ----------------------------------
pause(){
read -p "Press [Enter] key to continue..." fackEnterKey
}
menu1one(){
cd /media/jason/Backup2/Media/gits/mywiki-git
echo "Push git commits to mywiki folder on webserver"
git push live
pause
}
# do something in two()
menu1two(){
echo "Turn on WiFi Radio"
nmcli radio wifi on
pause
}
# do something in two()
menu1three(){
echo "Turn off WiFi Radio"
nmcli radio wifi off
pause
}
# do something in two()
menu1four(){
clear
echo "List all availible wifi networks"
nmcli -p dev wifi
pause
}
# do something in two()
menu1five(){
echo "Connect to ProckNet6700 2"
nmcli c up 4be93b80-c1ab-4e7a-9bf2-9e23bef6ec5e
pause
}
# do something in two()
menu1six(){
echo "Connect to *.*Procknow"
#nmcli c up *.*Procknow
nmcli c up ba5609c5-934c-4cfe-88f3-1231f8bf7d81
pause
}
# do menu 1 option 7
menu1seven(){
echo "Display all connection profiles"
nmcli -p c
pause
}
# do menu 1 option 8
menu1eight(){
echo "Run nmcli connection script"
./nmcliConnect.sh
pause
}
# do menu 1 option 9
menu1nine(){
echo "Show routing table"
route
pause
}
# function to display menus
show_menu1() {
clear
nmcli -p d status
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo " nmclimenu.sh"
echo " M A I N - M E N U"
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo "1. Push git commits to mywiki folder on webserver"
echo "2. Turn on WiFi radio"
echo "3. Turn off WiFi Radio"
echo "4. List all availible wifi networks"
echo "5. Connect to ProckNet6700 2"
echo "6. Connect to *.*Procknow"
echo "7. Display all connection profiles"
echo "8. Run nmcli connection script - nmcliConnect.sh"
echo "9. Show routing table"
echo "0. Exit"
}
# read input from the keyboard and take a action
# invoke the one() when the user select 1 from the menu option.
# invoke the two() when the user select 2 from the menu option.
# Exit when user the user select 3 form the menu option.
read_options(){
local choice
read -p "Enter choice [ 1 - 6] " choice
case $choice in
1) menu1one ;;
2) menu1two ;;
3) menu1three ;;
4) menu1four ;;
5) menu1five ;;
6) menu1six ;;
7) menu1seven ;;
8) menu1eight ;;
9) menu1nine ;;
0) exit 0;;
*) echo -e "${RED}Error...${STD}" && sleep 2
esac
}
# ----------------------------------------------
# Step #3: Trap CTRL+C, CTRL+Z and quit singles
# ----------------------------------------------
trap '' SIGINT SIGQUIT SIGTSTP
# -----------------------------------
# Step #4: Main logic - infinite loop
# ------------------------------------
while true
do
show_menu1
read_options
done