Siema, robie skrypt bash ktory ma mi pobrac dane ze zmiennej i wysle do konsoli serwera.
Wypocilem takie cos:
#Zmienne/Wiadomosci
MSG_SAVE1="say **Zapis serwera**"
MSG_SAVE2="say **Zapis serwera zakonczony**"
#Zmienne/Komendy
CMD_SAVE="save-all"
save() {
screen -r $SCREEN -X eval 'stuff "$MSG_SAVE1"\012'
screen -r $SCREEN -X eval 'stuff "$CMD_SAVE"\012'
screen -r $SCREEN -X eval 'stuff "$MSG_SAVE2"\012'
echo "Serwer zapisany !"
}
case "$1" in
save)
save
;;
*)
echo "Uzyj: /mc_s1 {start|stop|restart|save|backup|update}"
exit 1
;;
esac
exit 0
I nie wiem jak sprawdzic co naprawde pisze w konsli.. Pisze ze nie znaleziono komendy :/