项目作者: halloleo

项目描述 :
Man Pages for Commands without Man Pages
高级语言: Python
项目地址: git://github.com/halloleo/moreman.git
创建时间: 2017-11-06T07:50:44Z
项目社区:https://github.com/halloleo/moreman

开源协议:GNU General Public License v3.0

下载


moreman: Man Pages for Commands without Man Pages

This program generates man pages for command line tools which do not come with
proper separate man pages. For these tools man cannot display manual
information, moreman however uses the command’s help string (usually
displayed via the command line option --help) and assembles from this a “man
page”.

Overview

moreman is designed as a drop-in replacement for man. Apart from
very few options moreman passes all arguments through to the man command it
eventually calls. If moreman is called with a tool name for which a normal
man page exists, it just passes the name through to man; if no normal man
page exists, moreman assembles the man page in the described manner and then
calls man for final formatting.

My personal use is inside Emacs: Emacs has the great feature of Man
Page Lookup
: It displays each man page in its own buffer/frame, so
that you easily can view the documentation to a command while using the command
in a shell buffer in another window or frame. - And with moreman this extends
to all commands which provide some meaningful documentation via their help
message even if they do not have a real man page.

A Word of Warning

moreman works by calling the command it wants to create the man page for with
the help option - normally --help. This can be dangerous if the command
does not expect --help to display the help message.

Installation

Requirements

At least Python 3.5 (legacy Python 2.7 might work as well) plus the argh
package.

Install

The tool is pip-installable: pip install moreman For the intended command
line use though I recommend installation via pipx:

  1. pipx install moreman

Usage

Test whether everything is set up correctly by invoking moreman‘s help
message:

  1. $ moreman --help

This should give you something like

  1. usage: moreman [-h] [-v] [--man-cmd MAN_CMD] [-g HELP_ARG] [-f]
  2. name [name ...]
  3. positional arguments:
  4. name name of the command or man page
  5. optional arguments:
  6. -h, --help show this help message and exit
  7. -v, --verbose verbose output ('-v' shadows man's -v for version!)
  8. (default: False)
  9. --man-cmd MAN_CMD man command to be used (default: 'man')
  10. -g HELP_ARG, --help-arg HELP_ARG
  11. help argument to the command used to generate help
  12. document (default: '--help')
  13. -f, --force force to generate man page from --help even if man
  14. page exists ('-f' shadows man's -f for whatis lookup!)
  15. (default: False)
  16. All other options are passed through to the 'man' command.

Now try to list the same info as a “man page”:

  1. $ moreman moreman

Voila! This should look like a proper man page - many man page viewers are able
to recognise this format.[^1]

[^1]: Under the hood moreman creates a nroff file which it passes to man.

Hooking up to Emacs

In order use moreman in Emacs, customise the Emacs variable manual-program
(which is in the man customisation group). After checking that you can
access moreman from your shell prompt set manual-program to moremanand
everything should work fine.

Help for sub commands

Some tools provide extensive help and they split it over the help messages of
multiple sub commands. moreman can utilise these sub command help messages via
the --help-arg option.

Update September 2019: Some pip installations do install a man page - in
that case this example is obsolete.

For example pip --help lists only some general options and pip’s sub
commands; detailed info about, say, the install sub command is displayed only
by pip install --help.

But issue

  1. moreman --help-arg="install --help" pip

and you get a “man page” for the install subcommand of pip.

This works in Emacs too: After M-x man enter at the prompt
--help-arg="install --help" pip.[^2]

[^2]: In Emacs, in order to enter the required spaces you might need to use the
^Q <space> key combination to circumvent Emacs’ auto-complete feature at
the prompt.

Miscellaneous

If you have difficulties, open an GitHub issue for your problem. If you made
enhancements, please create a pull request.

Also note, this project uses another little module I wrote: ArghEx: Extensions
for Argh