From 63589a98aab606084dc4104c6069932b30c2aaa9 Mon Sep 17 00:00:00 2001 From: Zandrr Date: Fri, 5 Jun 2015 14:02:09 +0000 Subject: [PATCH] Fix incomplete example command in quick start guide Change-Id: Ic55d1f62ab2ee783aece5a5850feb90123335bdb --- doc/markdown/quick_start_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/markdown/quick_start_guide.md b/doc/markdown/quick_start_guide.md index f7ba5bb..05c25d1 100644 --- a/doc/markdown/quick_start_guide.md +++ b/doc/markdown/quick_start_guide.md @@ -121,7 +121,7 @@ You can now place an object in the container you have just created: ~~~ echo "Hello World" > mytestfile -curl -v -X PUT -T mytestfile 'X-Auth-Token: AUTH_XXXX' http://localhost:8080/v1/AUTH_test/mycontainer/mytestfile +curl -v -X PUT -T mytestfile -H 'X-Auth-Token: AUTH_XXXX' http://localhost:8080/v1/AUTH_test/mycontainer/mytestfile ~~~ To confirm that the object has been written correctly, you can compare the @@ -136,7 +136,7 @@ Now you can retreive the object and inspect its contents using the following commands: ~~~ -curl -v -X GET -o newfile http://localhost:8080/v1/AUTH_test/mycontainer/mytestfile +curl -v -X GET -o newfile -H 'X-Auth-Token: AUTH_XXXX' http://localhost:8080/v1/AUTH_test/mycontainer/mytestfile cat newfile ~~~