Forrest logo
back to context overview

curlie

List of commands for curlie:

  • curlie:tldr:3ea75 curlie: Send a GET request.
    $ curlie ${httpbin-org-get}
    try on your machine
    explain this command
  • curlie:tldr:41cf3 curlie: Send a POST request.
    $ curlie post ${httpbin-org-post} ${name=john} ${age:=25}
    try on your machine
    explain this command
  • curlie:tldr:83b2f curlie: Send a GET request with a custom header.
    $ curlie get ${httpbin-org-get} ${header-name:header-value}
    try on your machine
    explain this command
  • curlie:tldr:98c9b curlie: 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}
    try on your machine
    explain this command
back to context overview