#!/bin/bash #pushd "$GEXT_JENA_INSTALLED" if [ $# -ne 2 ] ; then echo "Usage: $0 collect-name ttl-file" >&2 exit 1 fi graph_name=$1 # triplestore server setup to also add to 'default' graph automatically file_ttl=$2 s-put http://localhost:3030/greenstone/data $graph_name "$file_ttl" #popd