Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- while true
- do
- java -Xmx1G -Xms1G -jar server.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
Advertisement
Add Comment
Please, Sign In to add comment