-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.sh
62 lines (39 loc) · 917 Bytes
/
setup.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
#!/bin/bash
BOLD="\033[01;01m" # Highlight
RED="\033[01;31m" # Issues/Errors
GREEN="\033[01;32m" # Success
YELLOW="\033[01;33m"
RESET="\033[00m"
white="\033[1;37m"
grey="\033[0;37m"
purple="\033[0;35m"
green="\033[1;32m"
yellow="\033[1;33m"
Purple="\033[0;35m"
Cyan="\033[0;36m"
Cafe="\033[0;33m"
Fiuscha="\033[0;35m"
blue="\033[1;34m"
transparent="\e[0m"
echo ""
echo "===== LETS START INSTALLING SOME ESSENTIAL STUFFS ====="
echo "====== PROXY-FINDER SETUP ======"
echo -e " $RESET****** SABRI ZAKI ******"
sleep 2
echo -e " $purple >>Do you want to Continue: (Y) \c"
read Y
if [ "$Y" ];
then
apt-get update
apt-get upgrade
apt-get install git
apt-get install python2
pip2 install requests
pip2 install bs4
cd
chmod +x PROXY_FINDER/*
sleep 6
echo -e "$RESET YOUR READY TO GO, FIRE UP A TOOL "
else
exit 0
fi