从 stdin 显示手册页

Display man page from stdin

我正在使用 rst 开发手册页。当我这样做时,我想要一种快速显示最终结果的方法。我目前是这样做的:

rst2man < the-man-page.rst > tmp
man ./tmp

有没有一种方法可以在不创建临时文件的情况下使用一个衬垫来做到这一点?我试图将输出直接传递给 man 命令。

您可以使用 man 命令的 --local-file 参数并指定 - 从标准输入读取。

示例:

rst2man < the-man-page.rst | man -l -