-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarts.sh
More file actions
33 lines (33 loc) · 775 Bytes
/
starts.sh
File metadata and controls
33 lines (33 loc) · 775 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
#ECHO COLORS
red="`tput setaf 1`"
green="`tput setaf 2`"
cyan="`tput setaf 6`"
bold="`tput bold`"
norm="`tput sgr0`"
magen="`tput setaf 5`"
# GET IP
het="$(dig +short myip.opendns.com @resolver1.opendns.com)"
# Script Info
info_script(){
echo "=========================================="
echo " NO SSH IS SUCCESSFULLY STARTED"
echo " Your Port is 1357/1358"
echo " Your IP: $het
echo "${green}===========AUTO SCRIPT BY SEVE===========${norm}"
echo "=========================================="
}
# Start Services
sudo service squid3 restart
echo "${green}Loading.${norm}"
sleep .5
clear
echo "${green}Loading..${norm}"
sleep .5
clear
echo "${green}Loading...${norm}"
sleep .5
clear
echo "${green}Loading....${norm}"
sleep .5
clear
info_script