diff --git a/pages/linux/httpie.md b/pages/linux/httpie.md index 1f560cd2ef..0fed4fc887 100644 --- a/pages/linux/httpie.md +++ b/pages/linux/httpie.md @@ -2,30 +2,30 @@ > A human-friendly CLI HTTP tool. -- GET method (default method with no request data): +- Send a GET request (default method with no request data): `http {{https://api.github.com/users}}` -- POST method (default method with request data): +- Send a POST request (default method with request data): `http {{example.org}} {{hello=World}}` -- POST method with redirected input: +- Send a POST request with redirected input: `http {{example.org}} < {{file.json}}` -- PUT method: +- Send a PUT request: `http PUT {{httpbin.org/put}} {{API-Key:foo hello=world}}` -- DELETE method: +- Send a DELETE request: `http DELETE {{example.org/todos/7}}` -- Show the whole HTTP exchange (request and response): +- Show the whole HTTP exchange (both request and response): `http -v {{example.org}}` -- Download file: +- Download a file: `http --download {{example.org}}`