2025-05-05 00:51:40 -07:00

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