如何使用 troff 格式从本地文件显示经典手册页?

如何使用 troff 格式从本地文件显示经典手册页?

我有一个 troff 格式的文件,想将其重铸为手册页

文件.txt:

.. c:function:: bool is_module_percpu_address (unsigned long addr)

   test whether address is from module static percpu

**Parameters**

``unsigned long addr``
  address to test

**Description**

Test whether **addr** belongs to module static percpu area.

**Return**

``true`` if **addr** is from module static percpu area


.. c:function:: int module_refcount (struct module * mod)

   return the refcount or -1 if unloading

**Parameters**

``struct module * mod``
  the module we're checking

**Return**

     -1 if the module is in the process of unloading
     otherwise the number of references in the kernel to the module

当我这样做时,我不太明白 groff 的输出groff file.txt | man -l -

正如您所看到的,我从未做过手册页,只是想使用 troff 格式并使其成为可读的手册页。

如何做?

相关内容