You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
177 B
10 lines
177 B
4 weeks ago
|
#!/bin/sh
|
||
|
dir="$(dirname "$0")"
|
||
|
|
||
|
mkdir -p server
|
||
|
cd server
|
||
|
exec java \
|
||
|
-DsocksProxyHost=127.0.0.1 -DsocksProxyPort=25560 \
|
||
|
-jar ../jars/a1.1.2_01/a0.2.1.jar \
|
||
|
nogui
|