Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 288 Bytes

File metadata and controls

28 lines (18 loc) · 288 Bytes

httpf

Serves a file over HTTP.

Installation

go get github.com/c2nes/httpf

Usage

$ cat test-file.txt
Hello, world!

$ httpf test-file.txt
http://192.168.119.44:59269/test-file.txt

$ curl -s http://192.168.119.44:59269/test-file.txt
Hello, world!

$