Skip to content

Instantly share code, notes, and snippets.

@KaneHart
Created January 22, 2020 17:01
Show Gist options
  • Save KaneHart/c815bde6da8d86638f3932c50f130d7d to your computer and use it in GitHub Desktop.
Save KaneHart/c815bde6da8d86638f3932c50f130d7d to your computer and use it in GitHub Desktop.
#!/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