With this invoking one of the utilities with -h will display the manpage.
Since quark is not a "system utility", we can't expect people to go to the trouble of installing manpages, and typing man ./quark-mon.8 is a pain. It's also likely that the binary is sent somewhere and thus the man relationship was lost.
I had to write a mini-utility to embed the manpage, it's a bit sad that there isn't a mandoc -T c to export the manpage as a C struct.
With this invoking one of the utilities with
-h
will display the manpage.Since quark is not a "system utility", we can't expect people to go to the trouble of installing manpages, and typing
man ./quark-mon.8
is a pain. It's also likely that the binary is sent somewhere and thus the man relationship was lost.I had to write a mini-utility to embed the manpage, it's a bit sad that there isn't a
mandoc -T c
to export the manpage as a C struct.