Mercurial > dive4elements > river
view artifacts/bin/createDatacage.sh @ 9660:f0cad5212f49
Importer (s/u-info) extensions: iota (salix): detecting, logging, cancelling in case of wrong column titles/units,
detecting, logging and skipping lines with missing values
author | mschaefer |
---|---|
date | Mon, 23 Mar 2020 15:40:12 +0100 |
parents | 6b8410ba48cb |
children |
line wrap: on
line source
#!/bin/bash mkdir -p datacagedb DIR=`dirname $0` DIR=`readlink -f "$DIR"` if [ $# != 1 ]; then SCHEMA="$DIR/../doc/conf/datacage.sql" else SCHEMA="$1" fi URL="jdbc:h2:`readlink -f datacagedb`/datacage" mvn -e -Dexec.mainClass=org.h2.tools.RunScript exec:java \ -Dexec.args="-url $URL -script $SCHEMA"