blob: aa43805ea12a80a0be6b94518dcbd48f51376e4d [file] [log] [blame]
#!/bin/bash
# sqlline - Script to launch SQL shell
# Build classpath on first call. (To force rebuild, remove cp.txt.)
if [ ! -f cp.txt ]; then
mvn install
mvn dependency:build-classpath -Dmdep.outputFile=cp.txt
fi
java -cp "$(cat cp.txt)" sqlline.SqlLine "$@"
# End sqlline