mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-06 11:41:52 +00:00
![Stefan Eßer](/assets/img/avatar_default.png)
Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
13 lines
450 B
Plaintext
13 lines
450 B
Plaintext
command-line cURL-like tool for humans, written in go. gURL can be used
|
|
for testing, debugging, and generally interacting with HTTP servers. It
|
|
makes using headers and JSON a delight.
|
|
|
|
A simple GET with custom header:
|
|
$ gurl httpbin.org/get x-header:custom
|
|
|
|
An automatic choice of POST, with content-type and JSON body:
|
|
$ gurl httpbin.org/post bool=true key=value
|
|
|
|
A PUT to HTTPS site from stdin:
|
|
$ gurl PUT https://httpbin.org/put < /etc/os-release
|