bash - Screen CS:GO server cvar change -
i want send commands screen .sh script. start csgo server with: screen -s cs ./srcds_run -game csgo -usercon
how can send command csgo server like: sv_cheats 1
from screen manpage:
-x send specified command running screen session.
at https://unix.stackexchange.com/questions/13953/sending-text-input-to-a-detached-screen find similar question.
so specific problem solution be:
screen -s cs -x stuff "sv_scheats 1"
Comments
Post a Comment