Last active
July 28, 2022 04:41
-
-
Save toriato/cdebeffbaf4404db4229d0df146cfe04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd "${0%/*}" | |
GAMEMODE="sandbox" | |
ARGS=( | |
"-nomaster" | |
"+sv_setsteamaccount <CHANGEMESENPAI>" | |
"+host_workshop_collection 2835137286" | |
"+maxplayers 32" | |
"+map gm_cluster_01" | |
"+gamemode $GAMEMODE" | |
"+sbox_persist $GAMEMODE" # is this necessary? | |
) | |
# disabling pipe buffering because tee is too slow | |
# https://unix.stackexchange.com/a/25378 | |
stdbuf -i0 -o0 -e0 \ | |
./srcds_run_x64 ${ARGS[@]} |& tee "logs/$(date +'%Y-%m-%d_%H-%M-%S').log" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment