Strabon
view scripts/storeTriples.sh @ 1462:0fd5affce921
the corresponding postgres function of the strdf:PeriodOverlaps must be the overlaps function and not the intersects
author | Stella Giannakopoulou <sgian@di.uoa.gr> |
---|---|
date | Thu Jan 22 19:28:57 2015 +0200 (2015-01-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