mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
13 lines
234 B
Bash
13 lines
234 B
Bash
#!/bin/sh
|
|
|
|
cleanup() {
|
|
echo "TODO"
|
|
}
|
|
|
|
trap 'cleanup' TERM
|
|
|
|
# TODO use tmux so can send exit
|
|
./TerrariaServer.bin.x86_64 -config config.txt -pass $(cat password.txt) &
|
|
wait $! # wait for SIGTERM
|
|
# wait $! # wait for server to stop
|