Strabon
annotate scripts/storeTriples.sh @ 1277:92b90ac06d39
[maven-release-plugin] prepare release v3.2.9
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Sat Oct 19 23:37:23 2013 +0300 (2013-10-19) |
parents | |
children |
rev | line source |
---|---|
ggarbis@200 | 1 #! /bin/bash |
ggarbis@200 | 2 |
ggarbis@200 | 3 echo > log.out |
ggarbis@200 | 4 |
ggarbis@200 | 5 for f in `ls /home/ggarbis/out_triples/HMSG2_IR_039_s7_070825_*n3 | sort`; do |
ggarbis@200 | 6 echo "Storing: $f" >> log.out |
ggarbis@200 | 7 echo "Executing: ./endpoint store http://pathway.di.uoa.gr:8080/strabonTest/ N3 -u file://$f" >> log.out |
ggarbis@200 | 8 ./endpoint store http://localhost:8080/strabonTest/ N3 -u file://$f >> log.out |
ggarbis@200 | 9 done |
ggarbis@200 | 10 |