diff --git a/README.md b/README.md index b63fe5d9..e5ae4491 100755 --- a/README.md +++ b/README.md @@ -308,7 +308,7 @@ a full set of RDF formats. ### Command line processing sparql execute --dataset etc/doap.ttl etc/from_default.rq - sparql execute -e "SELECT * FROM WHERE { ?s ?p ?o }" + sparql execute --dataset etc/doap.ttl -e "SELECT * FROM WHERE { ?s ?p ?o }" # Generate SPARQL Algebra Expression (SSE) format sparql parse etc/input.rq @@ -316,7 +316,7 @@ a full set of RDF formats. # Generate SPARQL Query from SSE sparql parse --sse etc/input.sse --format sparql - sparql parse --sse --format sparql -e "(dataset () (bgp (triple ?s ?p ?o))))" + sparql parse --sse --format sparql -e "(dataset () (bgp (triple ?s ?p ?o))))" # Run query using SSE input sparql execute --dataset etc/doap.ttl --sse etc/input.sse diff --git a/etc/from_default.rq b/etc/from_default.rq index 820aa35f..708e57bd 100644 --- a/etc/from_default.rq +++ b/etc/from_default.rq @@ -1 +1 @@ -SELECT * FROM WHERE { ?s ?p ?o } +SELECT * FROM WHERE { ?s ?p ?o } diff --git a/etc/input.sse b/etc/input.sse index f443d6e8..667113f4 100644 --- a/etc/input.sse +++ b/etc/input.sse @@ -1 +1 @@ -(dataset () (bgp (triple ?s ?p ?o)))) +(dataset () (bgp (triple ?s ?p ?o))))