Quero executar este script em uma tela:
#!/bin/bash
while true
do
java -server -Xms2G -Xmx2G -jar craftbukkit.jar
echo "If you want to completely stop the server process now, press Ctrl+C before the time is up!"
echo "Rebooting in:"
for i in 5 4 3 2 1
do
echo "$i..."
sleep 1
done
echo "Rebooting now!"
done
Como eu faço isso?
(O script é para um servidor Minecraft. Esta é a fonte:https://raw.githubusercontent.com/Zachoz/CrashPrevention/master/start.sh)
Responder1
Ok, eu descobri. Criei 2 scripts, o primeiro executa o script na tela:
#!/bin/bash
screen -S server $HOME/rubix/start.sh
O próximo é o que é executado primeiro, que você pode ver acima.