URI:
       rename bget to hurl - hurl - Gopher/HTTP/HTTPS file grabber
  HTML git clone git://git.codemadness.org/hurl
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 1e46afb6d205fa41815bbd84b63de163d7b0c341
   DIR parent 1f8427dcd93c50f45649604517f5ca7494c480ad
  HTML 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(-)
       ---
   DIR diff --git a/.gitignore b/.gitignore
       @@ -1,2 +1,2 @@
       -bget
       +hurl
        *.o
   DIR 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
   DIR diff --git a/README b/README
       @@ -1,4 +1,4 @@
       -bget
       +hurl
        ====
        
        Relatively simple HTTP, HTTPS and Gopher client/file grabber.
   DIR diff --git a/bget.c b/hurl.c