source: gs2-extensions/apache-jena/trunk/src/src/gs-triplestore-add@ 28451

Last change on this file since 28451 was 28451, checked in by davidb, 11 years ago

Add and Query scripts added to the mix

  • Property svn:executable set to *
File size: 300 bytes
Line 
1#!/bin/bash
2
3#pushd "$GEXT_JENA_INSTALLED"
4
5if [ $# -ne 2 ] ; then
6 echo "Usage: $0 collect-name ttl-file" >&2
7 exit 1
8fi
9
10graph_name=$1 # triplestore server setup to also add to 'default' graph automatically
11file_ttl=$2
12
13s-put http://localhost:3030/greenstone/data $graph_name "$file_ttl"
14
15#popd
Note: See TracBrowser for help on using the repository browser.