h2.sh 170 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 #!/bin/sh cp=h2.jar if [ -n "$H2DRIVERS" ] ; then cp="$cp:$H2DRIVERS" fi if [ -n "$CLASSPATH" ] ; then cp="$cp:$CLASSPATH" fi java -cp "$cp" org.h2.tools.Console %@