mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 12:07:56 +00:00
14 lines
224 B
Bash
14 lines
224 B
Bash
#!/bin/sh
|
|
|
|
cleanup() {
|
|
tmux send-keys stop Enter
|
|
}
|
|
|
|
trap 'cleanup' SIGTERM SIGINT
|
|
|
|
mkfifo log
|
|
tmux new -d 'LD_LIBRARY_PATH=. ./bedrock_server > log'
|
|
cat log &
|
|
wait $! # wait for SIGTERM
|
|
wait $! # wait for server to stop
|