forked from ArijitMahapatro/DARKARMY
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
76 lines (70 loc) · 2.84 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
#!/bin/bash
clear
BLACK='\e[30m'
RED='\e[31m'
GREEN='\e[32m'
YELLOW='\e[33m'
BLUE='\e[34m'
PURPLE='\e[35m'
CYAN='\e[36m'
WHITE='\e[37m'
NC='\e[0m'
echo""
echo -e "${RED} "
echo "
██████ █████ ██████ ██ ██ █████ ██████ ███ ███ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██ ██
██ ██ ███████ ██████ █████ ███████ ██████ ██ ████ ██ ████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ "
echo " "
echo -e "${GREEN} ~#~ Coded By 1ucif3r ~#~ ${NC}"
echo ""
echo -e "${YELLOW} www.darkarmy.live | Instagram.com/0x1ucif3r | Github.com/D4RK-4RMY ${NC} "
echo ""
echo "---------------------------------------------------------------------------------------"
echo ""
echo -e "${RED}[!] This Tool Must Run As ROOT [!]${NC}"
echo ""
echo -e "${CYAN}[>] Press ENTER to Install DARKARMY, CTRL+C to Abort.${NC}"
read INPUT
echo ""
if [ "$PREFIX" = "/data/data/com.termux/files/usr" ]; then
INSTALL_DIR="$PREFIX/usr/share/doc/DARKARMY"
BIN_DIR="$PREFIX/usr/bin/"
pkg install -y git python2
else
INSTALL_DIR="/usr/share/doc/DARKARMY"
BIN_DIR="/usr/bin/"
fi
echo "[✔] Checking directories...";
if [ -d "$INSTALL_DIR" ]; then
echo "[!] A Directory DARKARMY Was Found.. Do You Want To Replace It ? [y/n]:" ;
read mama
if [ "$mama" = "y" ]; then
rm -R "$INSTALL_DIR"
else
exit
fi
fi
echo "[✔] Installing ...";
echo "";
git clone https://github.com/D4RK-4RMY/DARKARMY.git "$INSTALL_DIR";
echo "#!/bin/bash
python $INSTALL_DIR/darkarmy.py" '${1+"$@"}' > DARKARMY;
chmod +x DARKARMY;
sudo cp DARKARMY /usr/bin/;
rm DARKARMY;
if [ -d "$INSTALL_DIR" ] ;
then
echo "";
echo "[✔] Successfuly Installed !! ENJOY !![✔]";
echo "";
echo "[✔]========================================================================[✔]";
echo "[✔] ✔✔✔ All Is Done!! you can execute tool by typing DARKARMY ! ENJOY ✔✔ [✔]";
echo "[✔]========================================================================[✔]";
echo "";
else
echo "[✘] Installation Failed Do Properly Again NIGGA !!! [✘]";
exit
fi