/

::: hihi this is the man subdomain

I host raw man pages here. Try the below command:

curl -fsSL "https://man.tox.wtf/fgets.3" | man /dev/stdin

It's lowkey chill as fuck because this lets you reference man pages you don't have installed without having to look at them in a web browser. Here's a function that wraps the above command:

manwtf() {
    curl -fsSL "https://man.tox.wtf/$1" | man /dev/stdin
}

EOF