Last active
March 5, 2025 06:07
-
-
Save krisstibex/2140c8d0abe70a454e4e9bd350aaa1e6 to your computer and use it in GitHub Desktop.
MacOS.
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 | |
| 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