test all http methods
Take as input on stdin a list of urls and print on stdout all the status codes and body sizes for HTTP methods.
https://example.com
https://test.com
...
cat urls | tahm
= https://www.example.com/ =
METHOD STATUS SIZE
GET 200 OK 1256
POST 404 Not Found 445
PUT 404 Not Found 1256
DELETE 405 Method Not Allowed 0
HEAD 200 OK 0
CONNECT 400 Bad Request 349
OPTIONS 200 OK 0
TRACE 405 Method Not Allowed 0
PATCH 405 Method Not Allowed 0
---------------------------
...