Strabon
view scripts/storeTriples.sh @ 1412:8dc244d8f18a
corrected some tests that were expecting the default SRID (4326) for WKT literals; from now, we do not include such URI, since this is the default and is assumed
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Mon Sep 22 13:12:18 2014 +0300 (2014-09-22) |
parents | |
children |
line source
1 #! /bin/bash
3 echo > log.out
5 for f in `ls /home/ggarbis/out_triples/HMSG2_IR_039_s7_070825_*n3 | sort`; do
6 echo "Storing: $f" >> log.out
7 echo "Executing: ./endpoint store http://pathway.di.uoa.gr:8080/strabonTest/ N3 -u file://$f" >> log.out
8 ./endpoint store http://localhost:8080/strabonTest/ N3 -u file://$f >> log.out
9 done