(no title)
danstewart_ | 3 years ago
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"
}
tuxie_|3 years ago
capableweb|3 years ago
bil7|3 years ago