build.sh
来自「Java的面向对象数据库系统的源代码」· Shell 代码 · 共 25 行
SH
25 行
#!/bin/sh# this script is needed to build in development# the path structure differs from the release# so we need to override some propertiesechoecho "Collection samples build"echo "------------------------"if [ "$JAVA_HOME" = "" ] ; then echo "ERROR: JAVA_HOME not found in your environment." echo echo "Please, set the JAVA_HOME variable in your environment to match" echo "the location of the Java Virtual Machine you want to use." exit 1fiSERVER_DIR=../../../serverANT_HOME=${SERVER_DIR}export PATH=${PATH}:${SERVER_DIR}/binexport CLASSPATH=../build/classes:%CLASSPATH%echoecho Starting Ant.... $SERVER_DIR/bin/ozoneAnt -Dozone.dir=${SERVER_DIR} $@
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?