hurl | Simple gopher and http(s) client. |
| download: http://git.y1.nz/archives/hurl.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 1e46afb6d205fa41815bbd84b63de163d7b0c341 parent 1f8427dcd93c50f45649604517f5ca7494c480ad Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Mon, 12 Nov 2018 19:55:14 +0100 rename bget to hurl Diffstat:
| M | .gitignore | 2 | +- |
| M | Makefile | 4 | ++-- |
| M | README | 2 | +- |
| R | bget.c -> hurl.c | 0 |
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1,2 +1,2 @@ -bget +hurl *.o diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ build: clean - cc -o bget bget.c -ltls ${CFLAGS} ${LDFLAGS} + cc -o hurl hurl.c -ltls ${CFLAGS} ${LDFLAGS} clean: - rm -f bget *.o + rm -f hurl *.o diff --git a/README b/README @@ -1,4 +1,4 @@ -bget +hurl ==== Relatively simple HTTP, HTTPS and Gopher client/file grabber. diff --git a/bget.c b/hurl.c
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.