source: gs2-extensions/apache-jena/trunk/src/src3/gs-triplestore-add3@ 37301

Last change on this file since 37301 was 37301, checked in by davidb, 16 months ago

Changed to work with whatever port GS3 install has specified, rather then assuming 8383

  • Property svn:executable set to *
File size: 773 bytes
Line 
1#!/bin/bash
2
3if [ $# -ne 2 ] ; then
4 echo "Usage: $0 collect-name ttl-file" >&2
5 exit 1
6fi
7
8graph_name=$1 # triplestore server setup to also add to 'default' graph automatically
9file_ttl=$2
10
11port=${FUSEKI3_PORT:-8383}
12
13if [ "x$FULL_GREENSTONE_URL_PREFIX" != "x" ] ; then
14 graph_uri="$FULL_GREENSTONE_URL_PREFIX/collection/$graph_name"
15else
16 graph_uri="http://localhost:$port/greenstone3/library/collection/$graph_name"
17fi
18
19
20# The following line helps with runing a she-bang line of:
21# '#!/usr/bin/env ruby'
22# when the current script has been run from Perl under Cygwin
23#
24export PATH=/usr/bin:$PATH
25
26echo s-post http://localhost:$port/fuseki3/greenstone/data "$graph_uri" "$file_ttl"
27s-post http://localhost:$port/fuseki3/greenstone/data "$graph_uri" "$file_ttl"
28
Note: See TracBrowser for help on using the repository browser.