Strabon
view scripts/storeTriples.sh @ 646:300e958d034b
temporals
author | Konstantina Bereta <Konstantina.Bereta@di.uoa.gr> |
---|---|
date | Tue Oct 16 15:47:04 2012 +0300 (2012-10-16) |
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