Skip to content

Instantly share code, notes, and snippets.

@TuxCoding
Created December 16, 2016 15:14
Show Gist options
  • Select an option

  • Save TuxCoding/e638d76f2ad443273920a6008bc5515a to your computer and use it in GitHub Desktop.

Select an option

Save TuxCoding/e638d76f2ad443273920a6008bc5515a to your computer and use it in GitHub Desktop.
Starts a Minecraft server in a loop with debug options enabled
while true;
do
java -Xmx3G -server -Xdebug -XX:+UnlockDiagnosticVMOptions -Xrunjdwp:transport=dt_socket,address=1000,server=y,suspend=n -jar paperclip.jar
read -rsp $'Press any key to continue...\n' -n 1 key
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment