Strabon
diff scripts/printNTriples @ 973:fd5c334c7fa8
Almost finished the test. Final check with the existing results need to be done.
author | Panayiotis Smeros <psmeros@di.uoa.gr> |
---|---|
date | Wed Apr 03 20:19:14 2013 +0300 (2013-04-03) |
parents | 8863c960e1f0 |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scripts/printNTriples Wed Apr 03 20:19:14 2013 +0300 1.3 @@ -0,0 +1,13 @@ 1.4 +#! /bin/bash 1.5 + 1.6 +input=$1 1.7 + 1.8 +if [ "$input" == "" ]; then 1.9 + echo "give database name" 1.10 + exit -1 1.11 +fi 1.12 + 1.13 +fgrep '[s=' $input \ 1.14 +| sed 's/\[s=\(.*\);o=\(.*\);p=\(.*\)\]/\1 \3 \2;/g' \ 1.15 +| sed 's/\(http:\/\/[^ >]*\)\([ ;]\)/<\1>\2/g' \ 1.16 +| sed 's/;/./g'