Created
April 5, 2020 17:16
-
-
Save HiiZun/6553c572e863eccd4c2ac642889b5e6b to your computer and use it in GitHub Desktop.
a verry simple booter to boot up minecraft servers
This file contains hidden or 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 | |
echo "=======================" | |
echo "bootmc script by HiiZun" | |
echo "=======================" | |
echo "booting up the bungeecord..." | |
screen -S Bungeecord /home/bungeecord/run.sh # à modifier ! | |
echo "success !" | |
echo "booting up the lobby..." | |
screen -S Lobby /home/lobby/run.sh # à modifier ! | |
echo "success !" | |
echo "booting up the RushFFA..." | |
screen -S RushFFA /home/rushffa/run.sh # à modifier ! | |
echo "success !" | |
echo "booting up the CubeRun..." | |
screen -S CubeRun /home/cuberun/run.sh # à modifier ! | |
echo "success !" | |
echo "boot up finished !" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment