17 lines
369 B
Bash
Executable File
17 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
# 启动 IB Gateway
|
|
# 确保先登录 IB 账户并开启 API 连接
|
|
|
|
JDK_LINK="$HOME/jdk"
|
|
|
|
if [ ! -x "$JDK_LINK/bin/java" ]; then
|
|
echo "ERROR: JDK not found at $JDK_LINK"
|
|
echo "Download Temurin JDK and link it: ln -sfn ~/jdk-<version> ~/jdk"
|
|
exit 1
|
|
fi
|
|
|
|
export JAVA_HOME="$JDK_LINK"
|
|
export PATH="$JAVA_HOME/bin:$PATH"
|
|
|
|
~/ibgateway/ibgateway "$@"
|