diff --git a/SpecialProxy.sh b/SpecialProxy.sh new file mode 100644 index 0000000..9f9a528 --- /dev/null +++ b/SpecialProxy.sh @@ -0,0 +1,23 @@ +#/bin/bash +Exit() +{ + echo -e "$1" + exit $2 +} + +while true +do + echo -n "Please input SpecialProxy server port: " + read server_port + [ "$server_port" -gt "0" -a "$server_port" -lt "65536" ] && break + echo "Please input 1-65535." +done +apt-get -y gcc make git || yum install -y gcc make git +git clone https://github.com/mmmdbybyd/SpecialProxy.git +[ ! -d SpecialProxy ] && Exit "\033[41;37mdownload SpecialProxy source code failed\033[0m" +cd SpecialProxy +make || Exit "\033[41;37mcompile tinyproxy failed\033[0m" +cp SpecialProxy sp +./sp -l $server_port -p Meng && \ +Exit "\033[32mSpeciaoProxy is running.\033[0m" || \ +Exit "\033[41;37mSpeciaoProxy is stopping.\033[0m"