A set of manual pages for iOS seems to be live still: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/
A third-party site also hosts MacOS 10.14 Mojave manpages: https://www.unix.com/man-page-mojave-repository.php
Also, the nroff markup (basically the source code of manual pages) is still available in public Git repositories that mirror the source code of Darwin.
Here are some of them: https://github.com/apple/darwin-xnu/tree/master/bsd/man
GitHub doesn't render a preview of manual pages like it does for Markdown, AsciiDoc and some other markup formats. But those files can be easily rendered with a command like nroff -man dup.2
or with the newer mandoc (available from Homebrew as brew install mandoc
). These resources could hopefully be combined to make a public web site with some reasonably recent set of manual pages.
man
command. – Epencephalon