NorbiPeti
ad48a7f528
- Copying config files automatically - Successfully joined servers, though it won't automatically redirect just yet
8 lines
179 B
Bash
8 lines
179 B
Bash
trap "echo Received stop signal; pkill java" INT TERM EXIT
|
|
ls -la
|
|
file=$(ls waterfall*.jar | tail -1)
|
|
echo Starting $file
|
|
mkdir -p proxy
|
|
cd proxy
|
|
java -jar ../$file
|
|
echo Stopped!
|