|
|
|
|
|
by danstewart_
1431 days ago
|
|
This looks good. I use a bash function to load the MDN page for the status: function man-http() {
code="$1"
if [[ -z $code ]]; then
echo "Usage: man-http <status code>"
exit 0
fi
firefox "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/$code"
}
|
|