-
Notifications
You must be signed in to change notification settings - Fork 85
/
install.sh
28 lines (28 loc) · 1.17 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
#! /usr/bin/bash
null="> /dev/null 2>&1"
g="\033[1;32m"
r="\033[1;31m"
b="\033[1;34m"
w="\033[0m"
echo -e "$b"">""$w"" E4GL30SINT - Simple information gathering toolkit"
echo -e "$b"">""$w"" prepare for installing dependencies ..."
sleep 3
echo -e "$b"">""$w"" installing package: ""$g""libxml2""$w"
pkg install libxml2 -y
echo -e "$b"">""$w"" installing pacakge: ""$g""libxslt""$w"
pkg install libxslt -y
echo -e "$b"">""$w"" installing pacakge: ""$g""python3""$w"
pkg install python -y
echo -e "$b"">""$w"" installing modules: ""$g""lxml""$w"
pip3 install wheel lxml
echo -e "$b"">""$w"" installing modules: ""$g""requests""$w"
pip3 install requests
echo -e "$b"">""$w"" installing modules: ""$g""BeautifulSoup""$w"
pip install beautifulsoup4
echo -e "$b"">""$w"" installing modules: ""$g""tabulate""$w"
pip3 install tabulate
echo -e "$b"">""$w"" installing modules: ""$g""pyperclip""$w"
pip3 install pyperclip
echo -e "$b"">""$w"" successfully installing dependencies"
wget -q https://raw.githubusercontent.com/C0MPL3XDEV/E4GL3OS1NT/main/E4GL30S1NT.py -O "$PREFIX"/bin/E4GL30S1NT && chmod +x "$PREFIX"/bin/E4GL30S1NT
echo -e "$b"">""$w"" use command ""$g""E4GL30S1NT""$w"" for start the console"