I have a command line program written in Python. I would like to generate man pages with Sphinx.
I would like to have one page by commands like:
man myprog foo
--> redirect to the man page of the foo
command.
man myprog foo2
--> redirect to the man page of the foo2
command.
etc.
The problem is Sphinx generates only one man page with the aggregation of all man pages.
How can I have my expected result?