Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lwydyby/gurl

This is a command-line tool similar to curl, written in Go. Its usage is the same as curl.
https://github.com/lwydyby/gurl

curl

Last synced: 8 days ago
JSON representation

This is a command-line tool similar to curl, written in Go. Its usage is the same as curl.

Awesome Lists containing this project

README

        

# Introduction
This is a command-line tool similar to curl, written in Go. Its usage is the same as curl.

# Installation
```bash
go install github.com/lwydyby/gurl/gurl@latest
```

# Usage Instructions

```bash
gurl --help
gurl [options...]

Usage:
gurl [flags]

Flags:
--compressed Request compressed response
-d, --data string HTTP POST data
--data-raw string HTTP POST data, '@' allowed
--data-urlencode stringArray HTTP POST data url encoded
-f, --form stringArray Specify multipart MIME data
-G, --get Put the post data in the URL and use GET
-H, --header stringArray Pass custom header(s) to server
-h, --help help for gurl
-i, --include Include the HTTP response headers in the output. The HTTP response headers can include things like server name, cookies, date of the document, HTTP version and more.
-k, --insecure Allow insecure server connections when using SSL
-L, --location Follow redirects
-X, --request string Specify request method to use
--url string URL to work with
```