Matthew Tran cb8f88fd33 wip4
2025-05-04 00:41:07 -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