#!/bin/sh
# Acquire and parse RDF, load it into PostgreSQL, query it.

#fetch
#GET http://www.w3.org/2001/sw/EU/proposal/jan10/dow/wps/_esw_projdata.rdf > _esw.projdata.rdf

#parse (should use API not Ntriple intermediary format)
rdfdump -o ntriples file:_esw_projdata.rdf | ../db/nt2sql.rb | psql test1

#./squish.rb < projplan.squish | psql test1




