Created
January 22, 2020 17:01
-
-
Save StoneLegion/c815bde6da8d86638f3932c50f130d7d to your computer and use it in GitHub Desktop.
This file contains 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 | |
while true | |
do | |
java -Xms8G -Xmx8G -jar forge-1.7.10-10.13.4.1614-1.7.10-universal.jar nogui | |
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 12 11 10 9 8 7 6 5 4 3 2 1 | |
do | |
echo "$i..." | |
sleep 1 | |
done | |
echo "Rebooting now!" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment