commit 1e46afb6d205fa41815bbd84b63de163d7b0c341
parent 1f8427dcd93c50f45649604517f5ca7494c480ad
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Mon, 12 Nov 2018 19:55:14 +0100
rename bget to hurl
Diffstat:
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