snippetbashTip
curlie — A frontend to `curl` that adds the ease of use of `httpie`. More information: <https://github.com/rs
Viewed 0 times
thecommandfrontendcurlcurliecliaddsthat
linux
Problem
How to use the
curlie command: A frontend to curl that adds the ease of use of httpie. More information: <https://github.com/rs/curlie#usage>.Solution
curlie — A frontend to curl that adds the ease of use of httpie. More information: <https://github.com/rs/curlie#usage>.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}}Code Snippets
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}}Context
tldr-pages: linux/curlie
Revisions (0)
No revisions yet.