-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhud.sh
More file actions
55 lines (51 loc) · 1.38 KB
/
hud.sh
File metadata and controls
55 lines (51 loc) · 1.38 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
#!/bin/bash
# To make executable, modify permissions of the script with: chmod u+x hud.sh
# Shell script library launcher
clear
sleep 0.5
cat << "EOF"
______
.-" "-.
/ \
| |
|, .-. .-. ,|
| )(_o/ \o_)( |
|/ /\ \|
(@_ (_ ^^ _)
_ ) \_______\__|IIIIII|__/__________________________
(_)@8@8{}<________|-\IIIIII/-|___________________________>
)_/ \ /
(@ `--------`
EOF
sleep 0.5
echo ""
echo " (c) Devon M. 2025"
echo " ------------------"
echo ""
sleep 0.5
echo "(1.) Update Devices"
echo "(2.) SSH Menu"
echo "(3.) FTP Menu"
echo "(4.) Telnet Menu"
echo "(5.) Upcoming"
echo "(9.) Utilities"
echo "(10.) Exit"
echo ""
read -p "Select:" menu_input
if [ $menu_input = "1" ] ; then
exec "/home/devon/Bash/netupdate.sh"
elif [ $menu_input = "2" ] ; then
exec "/home/devon/Bash/sshmenu.sh"
elif [ $menu_input = "3" ] ; then
exec "/home/devon/Bash/ftpmenu.sh"
elif [ $menu_input = "4" ] ; then
exec "/home/devon/Bash/telnetmenu.sh"
elif [ $menu_input = "9" ] ; then
exec "/home/devon/Bash/uts.sh"
elif [ $menu_input = "10" ] ; then
echo "Terminating script..."
sleep 0.5
exit 1
else
exec "/home/devon/Bash/hud.sh"
fi