-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathM5.sh
More file actions
63 lines (63 loc) · 915 Bytes
/
M5.sh
File metadata and controls
63 lines (63 loc) · 915 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
# (c) J~NET 2021
# jnet.sytes.net
#
#
#
#
#clear
echo -en "\e[92mJ~Net Links (Menu 5)"
echo ""
echo ""
echo "1. My YT"
echo "2. My Twitter"
echo "3. My Site"
echo "4. My Forum"
echo "5. My Radio"
echo "6. My Repos"
echo "7. Exit Menu"
echo "Enter your choice: (Anything else to exit)"
read n
case $n in
1)
clear
# op 1
firefox https://www.youtube.com/channel/UCXGv7Bzk5TTLG3Q5u9u1ZWA &
exit ;;
# returning to menu
2)
clear
# op 2
firefox https://twitter.com/jnetscripts &
exit ;;
# returning to menu
3)
clear
# op 3
firefox https://jnet.sytes.net &
exit ;;
# returning to menu
4)
clear
# op 4
firefox https://jnet.forumotion.com/ &
exit ;;
# returning to menu
5)
clear
# op 5
firefox https://radio2020.ddns.net/ &
exit ;;
# returning to menu
# send arg here
6)
clear
# op 6
# returning to menu
firefox https://github.com/jamieduk?tab=repositories &
exit ;;
7)
clear
# op 7
bash menu.sh;;
esac