#!/bin/bash

install_dir=$(realpath "$(dirname "$(realpath "$0")")/..")

if test "x$2" == "x"; then
   $install_dir/bin/gixpp $*
else
   input=$1; shift   
   output=$1; shift
   $install_dir/bin/gixpp -e -I $install_dir/share/gixsql/copy -i $input -o $output $*
fi
