-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.sh
executable file
·79 lines (65 loc) · 1.87 KB
/
install.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
#!/bin/bash
clear
###################################################################
#Script Name : Mixon
#Description : THE HACKMIX.
#Author :Onur Atakan ULUSOY
#Email :atadogan06@gmail.com
###################################################################
printf '###################################################################
#Script Name : Mixon
#Description : THE HACKMIX.
#Author :Onur Atakan ULUSOY
#Email :atadogan06@gmail.com
###################################################################
'
install-mixon-on-termux () {
pkg install python2 python nmap
git submodule update --init --recursive
printf '
*** NOW PLEASE WRITE DOWN FOR THE USING: ./mixon.py or python3 mixon.py
'
exit
}
install-mixon-on-other-linux () {
apt install python2 python3 pip nmap
git submodule update --init --recursive
printf '
*** NOW PLEASE WRITE DOWN FOR THE USING: ./mixon.py or python3 mixon.py
'
exit
}
only-sub-github-repo () {
git submodule update --init --recursive
printf '
*** NOW PLEASE WRITE DOWN FOR THE USING: ./mixon.py or python3 mixon.py
'
exit
}
main-menu () {
# main menu
PS3='Please enter install option: '
options=("TERMUX" "OTHER LINUX" "ONLY INSTALL SUB GITHUB REPO" "Quit")
select opt in "${options[@]}"
do
case $opt in
"TERMUX")
clear
install-mixon-on-termux
;;
"OTHER LINUX")
clear
install-mixon-on-other-linux
;;
"ONLY INSTALL SUB GITHUB REPO")
clear
only-sub-github-repo
;;
"Quit")
exit
;;
*) echo "invalid option $REPLY";;
esac
done
}
main-menu