-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashforward.sh
More file actions
40 lines (35 loc) · 785 Bytes
/
bashforward.sh
File metadata and controls
40 lines (35 loc) · 785 Bytes
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
#!/bin/bash
#
# https://github.com/babywhale321/bashforward
# https://bashforward.com
#
# Author: Kyle Schroeder "BabyWhale"
while true; do
echo ""
echo -e "======================= bashforward ======================="
echo ""
echo "1. Port Forwarding Menu 2. Wireguard Menu 3. NGINX menu"
echo ""
echo "q. Quit"
echo ""
read -ep "Enter an option: " choice
case $choice in
1)
bash bashforward-portforwarding.sh
;;
2)
bash bashforward-nyr-wireguard.sh
;;
3)
bash bashforward-nginx.sh
;;
q)
# Exit
break
;;
*)
echo ""
echo "Invalid selection"
;;
esac
done