Man page
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (→Links) |
|||
Line 3: | Line 3: | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Help files | |subcat=Help files | ||
− | |extensions={{ext|1}}, {{ext|2}}, {{ext|3}}, {{ext|5}}, {{ext|7}}, {{ext|8}}, others | + | |extensions={{ext|man}}, {{ext|1}}, {{ext|2}}, {{ext|3}}, {{ext|5}}, {{ext|7}}, {{ext|8}}, others |
}} | }} | ||
'''Man page''' format is a text format for help files. It is widely used on Unix and related computer systems. | '''Man page''' format is a text format for help files. It is widely used on Unix and related computer systems. | ||
Line 32: | Line 32: | ||
* [http://primates.ximian.com/~flucifredi/man/ man] | * [http://primates.ximian.com/~flucifredi/man/ man] | ||
* [http://man-db.nongnu.org/ man-db] | * [http://man-db.nongnu.org/ man-db] | ||
+ | * [http://www.gnu.org/software/groff/ GNU troff (groff)] | ||
+ | * [http://mdocml.bsd.lv/ mandoc] | ||
== Links == | == Links == | ||
* [[Wikipedia:Man page|Wikipedia: Man page]] | * [[Wikipedia:Man page|Wikipedia: Man page]] | ||
* [https://github.com/rprieto/tldr tldr: Simplified and community-driven man pages] | * [https://github.com/rprieto/tldr tldr: Simplified and community-driven man pages] |
Revision as of 00:36, 24 July 2014
Man page format is a text format for help files. It is widely used on Unix and related computer systems.
Contents |
How to display
Man pages can be displayed by a standard utility named man. They are usually first installed in a central location.
The man utility can display files directly, without needing them to be installed, but the way to do that depends on the implementation. To display a file named, say, xyzformat.5, at least one of the following commands is likely to work:
$ man xyzformat.5 $ man ./xyzformat.5 $ man -l xyzformat.5 $ nroff -man xyzformat.5 $ groff -man -Tutf8 xyzformat.5
If all else fails, read the manual:
$ man man
Specifications
Or run:
$ man 7 man