GrayJack / coreutils

Core utils re-implementation for UNIX/UNIX-like systems written in Rust
Mozilla Public License 2.0
106 stars 40 forks source link

Man pages #116

Open travankor opened 4 years ago

travankor commented 4 years ago

coreutils is not really a first-class *NIX citizen without man pages.

There's several different tools to solve this with, idk what will work best. The NetBSD and OpenBSD man pages are excellent reference material and can be partially copied. I would avoid GNU man pages (and texinfo) at all costs.

GrayJack commented 4 years ago

I agree!! Looks like clap v3 will have a feature to produce man pages, that was the reason that I picked clap to use universally in the project

Here a reference where I got it