davecheney / httpstat

It's like curl -v, with colours.
MIT License
6.96k stars 382 forks source link

Implement curl's -L flag #23

Closed davecheney closed 7 years ago

davecheney commented 7 years ago

curl -L follows redirects.

Implementing this in httpstat should follow 30x redirects and print the timing output for each step in the redirection chain.

This will probably require refactoring the body of main.main into functions.

Note: for implementors, please discuss your design here before slinging code.