11 lines
115 B
Bash
11 lines
115 B
Bash
#!/bin/sh
|
|
|
|
unzip /MinecraftServer.zip -d /MinecraftServer
|
|
|
|
StartServer
|
|
|
|
pid=$!
|
|
|
|
wait
|
|
|
|
echo "Server process stopped" |