curlie: add page (#8551)

pull/1/head
Suyash Bhawsar 2022-10-01 13:27:52 +05:30 committed by GitHub
parent 999854f9ae
commit 67b0bd02d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/linux/curlie.md Normal file
View File

@ -0,0 +1,20 @@
# curlie
> Curlie is a frontend to curl that adds the ease of use of httpie.
> More information: <https://github.com/rs/curlie>.
- Send a GET request:
`curlie {{httpbin.org/get}}`
- Send a POST request:
`curlie post {{httpbin.org/post}} {{name=john}} {{age:=25}}`
- Send a GET request with query parameters (e.g. `first_param=5&second_param=true`):
`curlie get {{httpbin.org/get}} {{first_param==5}} {{second_param==true}}`
- Send a GET request with a custom header:
`curlie get {{httpbin.org/get}} {{header-name:header-value}}`