source: gs2-extensions/apache-jena/trunk/src/src3/gs-triplestore-query3@ 34963

Last change on this file since 34963 was 34963, checked in by davidb, 3 years ago

Scripts to allow parallel version of triplestore to run using Apache-Jena v3.x

  • Property svn:executable set to *
File size: 352 bytes
Line 
1#!/bin/bash
2
3if [ $# -eq 0 ] ; then
4 echo "Usage: $0 <sparql-query>"
5 exit 1
6fi
7
8#pushd "$GEXT_JENA"
9
10# The following line helps with runing a she-bang line of:
11# '#!/usr/bin/env ruby'
12# when the current script has been run from Perl under Cygwin
13#
14export PATH=/usr/bin:$PATH
15
16s-query --service http://localhost:4040/greenstone/query "$*"
17
18
19#popd
Note: See TracBrowser for help on using the repository browser.