From 3c724a9493488978c12d703bbd5d9368be35d3df Mon Sep 17 00:00:00 2001 From: Jeremiah <4462211+jeremiahpslewis@users.noreply.github.com> Date: Sat, 18 Dec 2021 12:49:12 -0600 Subject: [PATCH] Fix curl string issue --- server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/README.md b/server/README.md index c565d836..b950b937 100644 --- a/server/README.md +++ b/server/README.md @@ -66,7 +66,7 @@ It provides the following REST actions: For example: ```sh curl -f -X POST -H 'Content-Type:application/n-triples' \ - --data-binary "@MY_FILE.nt" http://localhost:7878/store?graph=http://example.com/g + --data-binary "@MY_FILE.nt" "http://localhost:7878/store?graph=http://example.com/g" ``` will add the N-Triples file `MY_FILE.nt` to the server dataset inside of the `http://example.com/g` named graph. [Turtle](https://www.w3.org/TR/turtle/), [N-Triples](https://www.w3.org/TR/n-triples/) and [RDF XML](https://www.w3.org/TR/rdf-syntax-grammar/) are supported.