httpcat is a fun tool to translate http status codes.
Start by cloning the repository and then build the project
$ crystal build src/httpcat.cr
When the project has been built move the binary into a folder that is in your $PATH
.
$ httpcat -o
$ httpcat --open
$ httpcat -c 200
200 OK
$ httpcat --code 200
200 OK
$ httpcat -c 200 -o
$ httpcat -c 200 --open
$ httpcat --code 200 -o
$ httpcat --code 200 --open
- Fork it (https://github.com/henrikac/httpcat/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Henrik Christensen - creator and maintainer