1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00

README fixes.

This commit is contained in:
Jakub Roztocil 2012-07-17 01:55:12 +02:00
parent 533a662651
commit 54e3e5bca4

View File

@ -101,7 +101,7 @@ A whole request body can be passed in via **``stdin``** instead, in which case i
# Or:
http POST example.com/person/1 X-API-Token:123 < person.json
That can be used for **piping services together**. The following example ``GET``s JSON data from the Github API and ``POST``s it to httpbin.org::
That can be used for **piping services together**. The following example ``GET``-s JSON data from the Github API and ``POST``-s it to httpbin.org::
http -b GET https://api.github.com/repos/jkbr/httpie | http POST httpbin.org/post