Skip to content

Instantly share code, notes, and snippets.

@krisstibex
Last active March 5, 2025 06:07
Show Gist options
  • Select an option

  • Save krisstibex/2140c8d0abe70a454e4e9bd350aaa1e6 to your computer and use it in GitHub Desktop.

Select an option

Save krisstibex/2140c8d0abe70a454e4e9bd350aaa1e6 to your computer and use it in GitHub Desktop.
MacOS.
#!/bin/bash
JAVA_PATH="/Library/Java/JavaVirtualMachines/21/Contents/Home/bin/java"
JAVA_OPTS="-Xmx4G -Xms2G"
JAR_FILE="server.jar"
cd "$(dirname "$0")" || exit 1
[ -f "$JAR_FILE" ] || { echo "错误: 找不到 $JAR_FILE"; exit 1; }
"$JAVA_PATH" $JAVA_OPTS -jar "$JAR_FILE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment