This tool displays the MD5 hash of the response body from the given list of URLs
go get github.com/AgentNemo00/myhttp
or clone
git clone github.com/AgentNemo00/myhttp
go test ./...
go test -v ./... -coverprofile=coverage.out -covermode=count
go tool cover -html=coverage.out -o coverage.html
go tool cover -func=coverage.out
go run cmd/myhttp/main.go example.com
or multiple urls by space separated
go run cmd/myhttp/main.go adjust.com example.com https://httpbin.org
you can adjust the parallel processes using the flag
go run cmd/myhttp/main.go -parallel=2 adjust.com example.com httpbin.org
the default is 10 process