Strabon
view scripts/storeTriples.sh @ 1279:a424d0977de3
[maven-release-plugin] prepare for next development iteration
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Sat Oct 19 23:37:26 2013 +0300 (2013-10-19) |
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