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