Fact-checked by Grok 2 weeks ago

man page

A man page, short for manual page, is a form of integral to and operating systems, providing concise reference information on commands, system calls, library functions, file formats, and other system components. These pages are accessed via the man command, which serves as the system's manual pager to display formatted content stored typically in /usr/share/man directories in or related markup formats. Originating from the first "Unix Programmer's Manual" published on November 3, 1971, by and for Version 1 Unix on the PDP-11, man pages evolved from earlier text formatting tools like roff, developed by Ritchie in 1971 to produce the initial structured documentation. Man pages are organized into eight primary sections to categorize content systematically: section 1 covers executable programs and commands; section 2 details calls; section 3 addresses calls; section 4 describes files like devices; section 5 explains file formats and conventions; section 6 includes games; section 7 covers miscellaneous topics; and section 8 focuses on administration commands and daemons. Each page follows a standardized structure, including subsections such as NAME (identifying the subject), SYNOPSIS (usage syntax), DESCRIPTION (overview and behavior), OPTIONS (available flags), EXIT STATUS or RETURN VALUE (outcomes), ENVIRONMENT (relevant variables), FILES (related resources), EXAMPLES (practical uses), and SEE ALSO (cross-references). This format, inspired by earlier systems like and CTSS manuals, ensures quick, offline accessibility for users and administrators, making man pages a cornerstone of Unix documentation since their inception. Over time, man pages have been maintained and enhanced through projects like the man-pages initiative, which documents kernel and C library interfaces for user-space programs, and tools such as groff (introduced in 1989 by ) for modern rendering. While originally tied to Unix developments—building on (1972) and (1973) by Joseph F. Ossanna for phototypesetter output—they remain a standard across distributions like and BSD, viewable with commands like man <topic> or man -k <keyword> for searches. Their enduring design prioritizes precision and brevity, aiding troubleshooting and learning without requiring internet access.

Usage and Access

Command Usage

The man command is used to display manual pages for system commands, functions, and other topics on operating systems. Its basic syntax is man [options] [[section] page ...], where page specifies the topic (e.g., a command name) and section (optional) restricts the search to a particular manual section, such as 1 for user commands or 2 for system calls. Without specifying a section, man searches in the default order, typically starting with section 1. Common options enhance functionality for searching and customization. The -k or --apropos option searches manual page descriptions for keywords, equivalent to the apropos command; for example, man -k printf lists pages related to "printf". The -f or --whatis option displays short descriptions for exact page names, similar to whatis; invoking man -f ls shows the one-line summary for the ls command. To specify sections explicitly, use -s list or --sections=list, such as man -s 2 fork to view the system call documentation for fork in section 2. The -M path or --manpath=path option overrides the default search paths, allowing users to point to alternative manual directories, e.g., man -M /custom/man ls. To retrieve a manual page, users typically enter a command like man [ls](/page/Ls) in , which formats and displays the page using a such as less. For section-specific access, prepend the section number before the page name, as in man 2 [fork](/page/Fork), which directly loads the fork entry from the system calls section without searching others. If multiple matches exist across sections, the -a option displays all of them sequentially. Environment variables influence man's behavior. MANPATH defines the directories to search for manual pages, overriding compiled defaults if set (e.g., export MANPATH=/usr/local/man:$MANPATH). MANWIDTH controls the output line width for formatting, defaulting to the terminal width or 80 characters; setting it to a fixed value like export MANWIDTH=72 ensures consistent rendering across displays. If no matching page is found, man outputs an error message such as "No manual entry for X" and exits with status 16, indicating no matches for the specified page, section, or keywords. This helps users verify typos or unavailable documentation promptly.

Online Services

Several online repositories provide web-based access to man pages, enabling users to browse and search documentation without local installation. One prominent example is manpages.debian.org, which hosts a complete repository of man pages extracted from Debian packages across various releases, including stable, testing, and unstable suites. The site features a searchable interface allowing direct navigation via URL patterns, such as specifying suites, packages, sections, and languages, with pages rendered in HTML for easy reading. It is updated periodically to reflect changes in Debian's package ecosystem. Similarly, linux.die.net/man offers an extensive collection of Linux man pages organized by traditional sections (1 through 8, plus L and N for specialized functions), covering user commands, system calls, library functions, and more. Users can search by command name or browse alphabetically within sections, making it suitable for quick reference on diverse utilities. Although some pages may lag behind the latest versions, it remains a widely used resource for general documentation. Ubuntu's manpages.ubuntu.com serves as another key repository, dynamically generating hundreds of thousands of man pages from packages across all supported Ubuntu versions, from long-term support releases to development branches. The manuals are extracted and converted to HTML, with daily updates to ensure currency, and support searching by command, section, or package for targeted access. Services like man.cx provide simplified, searchable interfaces to man pages, drawing from sources such as Debian's testing distribution to compile over 229,000 pages, including translations (as of August 2024). Users enter a command name (optionally with a section number, e.g., ls(1)) in the search box or address bar to retrieve formatted pages instantly, addressing scenarios where local man pages are unavailable. TLDR pages, available at tldr.sh, complement traditional man pages by offering community-maintained, concise summaries focused on practical examples for commands across platforms like Linux, macOS, and Windows. Rather than exhaustive details, TLDR emphasizes common usage scenarios, with web access, downloadable clients, and a GitHub repository for contributions under an MIT license. For programmatic retrieval, -based tools enable developers to integrate man page access into applications. ManKier.com, for instance, provides a RESTful that allows searching man pages, retrieving descriptions, options, cross-references, and command explanations in structured formats, supporting automated querying without manual browsing. This facilitates embedding documentation in scripts, , or custom tools. Mobile and cross-platform apps extend remote access to man pages on handheld devices. On , the Linux Man Pages app fetches comprehensive /Linux documentation from online sources, allowing users to download sections for offline use while supporting search and section-based navigation. Similar functionality appears in apps like Man Pages Unix/Linux, which pull man pages remotely for on-the-go reference. For , direct native apps are limited, but users can leverage web-based services like those above via mobile browsers or emulators such as iSH, which enable remote fetching through integrated Linux environments.

Internal Structure

Manual Sections

Manual pages are organized into standardized sections, numbered from 1 to 8, to categorize documentation by type and audience, facilitating efficient navigation for users, developers, and administrators. This structure originated in early systems and has been adopted across POSIX-compliant environments, with each section serving a distinct purpose in documenting system components. The section number appears in parentheses after the command or function name, such as [ls](/page/Ls)(1), indicating its category. The standard sections are as follows:
SectionPurposeExamples
1User commands: Executable programs invoked directly by users in a shell, including utilities for file manipulation, text processing, and system interaction.ls(1) for listing directory contents; grep(1) for pattern searching.
2System calls: Interfaces to kernel operations, typically wrapped by library functions for process control, file I/O, and signaling.open(2) for opening files; fork(2) for process creation.
3Library functions: Standard C library calls excluding system calls, covering string handling, memory management, and mathematical operations.printf(3) for formatted output; malloc(3) for dynamic memory allocation.
4Devices and special files: Descriptions of hardware devices and pseudo-devices accessible via /dev, including drivers and interfaces.tty(4) for terminal devices; null(4) for a null device sink.
5File formats and conventions: Formats of configuration files, data files, and protocols that are human-readable or machine-parsable.passwd(5) for user account files; fstab(5) for filesystem mounts.
6Games and recreational programs: Documentation for entertainment software and simple diversions, often with graphical or interactive elements.rogue(6) for the dungeon-crawling game; fortune(6) for quote display.
7Miscellaneous: Overviews of protocols, standards, character sets, and other topics not fitting elsewhere, such as networking or file system overviews.ascii(7) for character encoding; uri(7) for uniform resource identifiers.
8Administrator commands: Privileged utilities for system maintenance, typically requiring root access, including service management and hardware configuration.mount(8) for mounting filesystems; useradd(8) for adding users.
Some implementations include non-standard sections beyond 1-8, such as section n for Tcl (Tool Command Language) functions and commands, which document scripting interfaces specific to the Tcl interpreter. For instance, Tcl_Interp(3) resides in section 3 for C APIs, while core Tcl commands like puts(n) are in section n. Overlaps occur when the same name applies to entries in multiple sections, reflecting different contexts such as user tools versus programming interfaces; users specify the desired section with the man command's section option, e.g., man 1 [printf](/page/Printf) for the shell builtin versus man 3 [printf](/page/Printf) for the library function. Without specification, man displays the lowest-numbered section by default, prioritizing user commands. Section-specific conventions guide content presentation for clarity; in section 1, command names and options are rendered in boldface to distinguish executables, while section 2 and 3 use italics for function parameters and return values to highlight interfaces. These typographic rules, enforced via formatting macros, ensure consistency across implementations like GNU troff.

Layout

Man pages follow a standardized internal structure to ensure consistent readability across systems. The typical layout begins with a NAME section providing a brief of the command or , followed by a section that outlines the syntax using literal formatting for commands and italicized placeholders for arguments. Subsequent sections include , which details the functionality; OPTIONS for command-line flags; or for output codes; ERRORS for failure conditions; EXAMPLES for usage demonstrations; FILES for relevant paths; SEE ALSO for cross-references; for credits; for known issues; and for version changes. This sequence promotes logical flow, with the placement of sections like OPTIONS or ERRORS varying slightly based on the manual section (e.g., user commands versus library ). The layout employs troff-based macros from the man macro package to control typography and organization. Document structure is defined using macros such as .SH for bold section headings (e.g., .SH DESCRIPTION) and .PP for starting new paragraphs with no indentation. Indentation for lists or examples is achieved with .RS to begin a relative inset block and .RE to end it, often combined with .IP for marked paragraphs (e.g., .IP \(bu for bullet points). Font changes include .B for bold text, typically for command names or options (e.g., .B -l), and .I for italics, used for arguments or filenames (e.g., .I filename). The SYNOPSIS section often uses .nf and .fi to disable and re-enable text filling, preserving literal formatting for code-like syntax. Headers and footers are generated automatically via the .TH macro, which specifies the title, section number, date, source, and manual volume (e.g., .TH [LS](/page/Ls) 1 "2025-11-09" "[Linux](/page/Linux)" "User Commands"). This produces centered headers with the command name and section (e.g., "(1)"), and footers including the date, page number, and volume description like "User Commands," ensuring quick identification during pagination. For terminal display, man pages are formatted using , which adapts the layout for fixed-width output by wrapping long lines to approximately 65-80 characters and substituting unavailable fonts (e.g., italics as underlines). Modern viewers support enhancements like hyperlinks via ECMA-48 escape sequences (OSC 8), allowing clickable cross-references in SEE ALSO sections, while uses tools like less for scrolling through multi-page content.

Creation and Formatting

Authoring Process

The authoring process for man pages begins with selecting an appropriate , such as the traditional troff-based man macros commonly used in environments or the mdoc markup preferred in BSD systems like . Authors then structure the content according to established layout standards, ensuring inclusion of mandatory sections such as NAME, which provides the command or function name along with a concise one-line description, and , which outlines the usage syntax including options and parameters. This workflow emphasizes starting with a source file named after the command followed by its section number (e.g., ls.1), incorporating semantic macros for formatting, and iteratively testing the draft using tools like groff or mandoc to preview the rendered output. Best practices prioritize clarity and user-friendliness to make man pages effective references. Authors should employ to directly describe actions, such as "The command lists files" rather than passive constructions, and include practical examples in the EXAMPLES section to illustrate common usage scenarios, like everyday tasks or edge cases, while avoiding deep dives into internal implementation details that could confuse readers. Content should remain concise, with each sentence on a new line for readability during editing, to promote inclusivity, and spelling conventions where applicable in projects. These guidelines ensure the documentation serves as a quick, reliable aid without overwhelming users. In open-source projects, integrating man pages into systems like is standard practice, allowing collaborative tracking of changes alongside . For instance, the GNU project recommends maintaining man pages in repositories only if a dedicated volunteer handles updates, using tools like help2man to generate initial drafts from program output, and storing them under permissive licenses to facilitate contributions. Projects such as the man-pages repository exemplify this by hosting source files in , enabling pull requests for improvements. Maintenance involves regular updates to reflect software evolution, such as revising the for new options or adding notes on version-specific behaviors in a section. Authors update the document date macro (e.g., .Dd in mdoc or the date in .TH) for substantive changes and test for consistency using lint tools. For distribution integration, man pages are submitted upstream to projects or directly to package maintainers; in , they must accompany programs per policy and can be generated from formats like before inclusion in source packages, while encourages community contributions via the source tree with thorough reviews.

Formatting Tools

Man pages are traditionally formatted using the typesetting system, with the GNU implementation known as groff, which serves as the primary front-end for processing roff input files containing man macros. Groff invokes the underlying formatter to handle low-level operations such as font changes, spacing, and page layout, ensuring compatibility with classical Unix while adding extensions for modern use. To support specialized content, groff employs preprocessors that convert domain-specific markup into roff commands before final formatting. The eqn preprocessor typesets mathematical equations, allowing authors to embed expressions like fractions and integrals using a simple syntax that groff then renders appropriately. Similarly, the tbl preprocessor formats tables from tabular input descriptions, generating structured layouts such as aligned columns and borders within man pages. These tools are invoked automatically via command-line options, such as -e for eqn and -t for tbl, streamlining the conversion of source files into viewable output. For enhanced portability across systems, the mandoc toolset provides a modern alternative to groff, compiling man and mdoc source into formatted output without relying on the full roff ecosystem. Developed primarily for but adopted in , , and other systems, mandoc emphasizes speed, small footprint, and strict validation of input syntax, rendering pages in a consistent manner regardless of the host environment. It supports the same macro packages as traditional tools but avoids groff's complexity, making it suitable for resource-constrained setups like embedded systems. Preprocessing extends beyond core formatters to handle custom needs, such as defining additional macros or adapting content for specific builds, often using utilities like and in scripts to manipulate roff source dynamically. For , po4a facilitates translations by extracting translatable strings from man pages into PO files, allowing localization teams to update content while preserving structural macros, then reinjecting the results back into formatted documents. This approach decouples text translation from formatting, supporting multiple languages without altering the original English source. Formatted man pages support various output devices for distribution and viewing. Groff generates PostScript for high-quality printing via the -Tps option and PDF through integrated drivers like gropdf, enabling archival and printable versions. HTML conversion is achieved directly with groff's -Thtml mode or via dedicated tools like man2html, which parses roff input and produces web-ready markup with hyperlinks and styling. Mandoc similarly outputs to HTML5, PostScript, and PDF, broadening compatibility. In package management systems, such as those in Debian or Arch Linux, formatted man pages are installed into directories like /usr/share/man during software deployment, with tools like groff or mandoc invoked by the man command for on-demand rendering.

Alternatives to Man Pages

The GNU Info system serves as a primary alternative to man pages, providing documentation in a hierarchical hypertext format designed for navigation via menus and cross-references. Developed as part of the documentation system, Info files are viewed using the info command, which allows users to traverse structured nodes rather than linear pages. For instance, executing info gcc displays the GNU Compiler Collection manual in an interactive format, enabling efficient searching and linking between related topics. Modern software tools increasingly rely on Markdown-based documentation for accessibility and simplicity, diverging from the troff-formatted structure of man pages. In , the git --help command outputs formatted text that can be configured to plain, , or web formats, often drawing from sources for clarity in command-line interfaces. Similarly, Rust's uses cargo doc to generate documentation via rustdoc, which processes Markdown-embedded code comments into browsable references, emphasizing developer-friendly, web-oriented presentation over terminal-based paging. Integrated help systems further supplement or replace man pages by embedding documentation directly into tools and projects. Command-line utilities commonly include --help or -h flags to display concise usage summaries, adhering to Unix conventions for quick reference without external viewers. README files, typically in Markdown, provide project overviews, installation guides, and usage examples in open-source repositories, serving as the initial entry point for users. Project wikis extend this with collaborative, multi-page Markdown or reStructuredText content, as seen in GitHub wikis for ongoing documentation maintenance. Python's official documentation, generated by Sphinx from reStructuredText sources, produces HTML, PDF, or EPUB outputs, integrating docstrings for automated API coverage in a hyperlinked format. Emerging formats prioritize machine-readable documentation to enable programmatic access and automation. In container tools like , commands such as docker inspect output structured data detailing resource configurations, allowing scripts and tools to parse metadata without human-readable rendering. This -based approach facilitates integration with APIs and pipelines, shifting from static text to dynamic, queryable formats for modern workflows.

History and Evolution

Origins in Unix

The man page system was invented by and in 1971 as part of the documentation for the first edition of Unix, developed at AT&T Bell Laboratories. This initial release, targeted for the PDP-11 minicomputer, included the Unix Programmer's Manual, First Edition, published on November 3, 1971, which served as the foundational collection of these online reference pages. Ritchie and Thompson authored the earliest man pages, documenting core system utilities to aid developers in a resource-constrained environment where printed manuals were impractical for frequent reference. Early man pages were formatted using roff, an assembly-language text formatter ported from earlier systems like , enabling simple markup for terminal output on the PDP-11. By the second edition of Unix in 1972, roff had evolved into for enhanced flexibility in producing line-printer-ready documents, while emerged shortly thereafter for high-quality typesetting on devices like the Graphic Systems CAT phototypesetter. The first man pages covered essential commands such as for directory listing and for file concatenation, reflecting Unix's emphasis on concise, modular tools. These pages were stored in a dedicated , accessible via an early version of the command, which piped the content through for display. Man pages gained broader standardization through the Berkeley Software Distribution (BSD) in 1979, derived from AT&T's and incorporating revised macro packages by McIlroy to improve consistency and readability. This BSD variant, distributed by the , popularized man pages among academic and research users, establishing conventions for section divisions and cross-references that persist today. From BSD, the format spread to AT&T's commercial System V Unix releases starting in 1983, which adopted and extended the structure for enterprise environments, ensuring compatibility across diverging Unix implementations. A key milestone came with the inclusion of the man command in the POSIX.1 standard (IEEE Std 1003.1-1988), which specified the utility and encouraged a conventional eight-section layout to promote portability among systems. Ratified by the IEEE and later adopted as ISO/IEC 9945-1:1990, this specification formalized man pages as an essential interface for system documentation, bridging proprietary variants like BSD and System V.

Developments in Modern Systems

In the Linux ecosystem, significant advancements to man pages began in 1995 with the establishment of the man-pages project by Andries Brouwer, which centralized the maintenance and distribution of man pages for the and core utilities as a dedicated repository under the Linux Documentation Project. This project, now hosted on , ensures standardized documentation across distributions by providing a comprehensive set of pages that packages can install, addressing the fragmentation seen in early Unix derivatives. Distributions like have further integrated these through strict packaging policies, requiring man pages for all executables and libraries to be included in RPM packages, with automated checks during builds to enforce completeness and accuracy. Support for man pages has extended beyond Unix-like systems into modern operating environments. On macOS, man pages are built into the operating system and accessed via the man command in the Terminal application, providing documentation for system commands and APIs. In Windows environments, man pages are accessible through subsystems like (WSL), where users can install the manpages package via apt to view Unix-style documentation, and , which includes a full man infrastructure for POSIX compatibility in a Windows-native setting. Internationalization efforts have enhanced man pages' usability in diverse linguistic contexts. The manpages-l10n project, initiated in 2010 under and now collaborative across distributions, coordinates translations of man pages into multiple languages including , Danish, , , , , , , , , , , , and . Concurrently, UTF-8 support was standardized in the groff formatting system around 2012, allowing man pages to render international characters and symbols natively without legacy encoding issues, as implemented in most modern viewers like less and man itself. Recent trends as of 2025 reflect ongoing adaptations for and inclusivity. Colorized output has become available in enhanced viewers, such as integrating tools like or most, which apply to man pages when invoked via the , improving readability for complex syntax without altering the core format. Accessibility features have progressed modestly, with efforts like HTML conversions via mandoc enabling compatibility through semantic markup, though native man viewers remain limited in support for assistive technologies. Emerging but incomplete areas include AI-assisted generation, where tools like have been used experimentally to draft man pages for open-source projects, and exploratory concepts for blockchain-verified to ensure tamper-proof updates, though these lack widespread adoption.

References

  1. [1]
    man(1) - Linux manual page - man7.org
    man is the system's manual pager. Each page argument given to man is normally the name of a program, utility or function.
  2. [2]
    Everything you need to know about Linux man pages - TechTarget
    Jan 25, 2023 · That led to the creation of the first-ever Unix document, the "Unix Programmer's Manual," initially published on Nov. 3, 1971. Dennis Ritchie ...<|control11|><|separator|>
  3. [3]
    History of UNIX Manpages
    In this article, I reconstruct the history of the UNIX manpage based on source code, manuals, and first-hand accounts.
  4. [4]
    The Linux man-pages project
    The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user-space programs.
  5. [5]
    index — Debian Manpages
    This is the complete repository of all manpages contained in Debian. There are a couple of different ways to use this repository: Directly jump to any manpage:.FAQ · Contents of Debian bookworm · Debian testing · Debian unstable
  6. [6]
    Linux man pages - Die.net
    Man pages are grouped into sections. To see the full list of Linux man pages for a section, pick one of: Section 1. user commands (introduction)Optimizing Page Load Time · Introduction to user commands
  7. [7]
    Ubuntu Manpage: Welcome
    Welcome to the Ubuntu Manpage Repository. This site contains hundreds of thousands of dynamically generated manuals, extracted from every package of every ...
  8. [8]
    Linux Manpages Online - man.cx manual pages
    Just enter the name of the page you want in the inputbox at the top of the page. You can add a section number (in parentheses) if you want. But you can simply ...
  9. [9]
    tldr pages
    The tldr pages are a community effort to simplify the beloved man pages with practical examples. tldr screenshot. Try the live demo below, have a look at ...
  10. [10]
    API - ManKier
    Mar 31, 2017 · ManKier API: search for man pages, get their description and options, get references to and from other man pages, explain whole commands.
  11. [11]
  12. [12]
  13. [13]
    man-pages(7) - Linux manual page - man7.org
    Command options should be written in italics (e.g., -l). Expressions, if not written on a separate indented line, should be specified in italics. Again, the use ...
  14. [14]
    groff_man(7) - Linux manual page - man7.org
    Document structure macros Document structure macros organize a man page's content. ... layout of material within sections. For example, a section called ...
  15. [15]
    Chapter 11. Manual Pages | FreeBSD Documentation Portal
    Jul 23, 2025 · Manual Page Sections. Manual pages are composed of several standard sections. ... Some macros are used to define logical blocks of a manual page.Missing: layout | Show results with:layout
  16. [16]
    How To - Linux / UNIX Create a Manpage - nixCraft
    Oct 29, 2020 · It is recommended that you store your own man pages in /usr/local/man directory. You can set man search path in /etc/man.config file.
  17. [17]
    [PDF] Writing Manual Pages - FreeBSD Foundation
    This article covers the basics for writing new or improving existing man pages for most. BSD systems. Manual Page Sections. The BSD manual pages are divided ...
  18. [18]
    Writing manual pages on Linux - LinuxConfig
    Nov 28, 2020 · Learn how to write Linux man pages using groff or pod2man. Simplify documentation with easy formatting tips. Perfect for developers!<|control11|><|separator|>
  19. [19]
    Man Pages (GNU Coding Standards)
    6.9 Man Pages ¶. In the GNU project, man pages are secondary. It is not necessary or expected for every GNU program to have a man page, but some of them do.
  20. [20]
    6. Best Packaging Practices – developers-reference 14.1 ... - Debian
    Debian policy (section 12.1) directs that manual pages should accompany every program, utility, and function, and suggests them for other objects like ...
  21. [21]
    The GNU Troff Manual
    GNU troff is a typesetting document formatter; it provides a wide range of low-level text and page operations within the framework of a programming language.
  22. [22]
    troff(1) - Linux man page
    This manual page describes the GNU version of troff. It is part of the groff document formatting system. It is functionally compatible with UNIX troff, but has ...Missing: tools | Show results with:tools
  23. [23]
  24. [24]
    tbl(1): format tables for troff - Linux man page
    This manual page describes the GNU version of tbl, which is part of the groff document formatting system. tbl compiles descriptions of tables embedded ...Missing: tools | Show results with:tools
  25. [25]
    groff(1) - Linux man page
    The central roff formatter within the groff system is troff(1). It provides the features of both the classical troff and nroff, as well as the groff extensions.
  26. [26]
    mandoc | UNIX manpage compiler
    Sep 23, 2021 · mandoc is a toolset that compiles mdoc and man, the languages for BSD and UNIX manuals, and formats output for various terminals and formats.MAN(1) · Mandoc(1) · History of the mandoc toolset · Development history
  27. [27]
    mandoc(1) - OpenBSD manual pages
    The mandoc utility treats the line as a comment line even without the backslash, but leaving out the backslash might not be portable. Warnings related to the ...
  28. [28]
    [PDF] mandoc: becoming the main BSD manual toolbox - OpenBSD
    Mandoc is a toolbox that integrates man(1) as the only documentation formatter in OpenBSD, used by default in OpenBSD, FreeBSD, NetBSD, and illumos.
  29. [29]
    Man page of PO4A.1P
    Aug 2, 2025 · The main feature of po4a is that it decouples the translation of content from its document structure. Please refer to the page po4a(7) for a ...DESCRIPTION · OPTIONS · CONFIGURATION FILE
  30. [30]
    po4a - Welcome
    ### Summary of po4a for Handling Translations of Man Pages and Internationalization
  31. [31]
  32. [32]
    man2html(1): format manual page in html - Linux man page - Die.net
    man2html converts a manual page as found in file (or stdin, in case no file argument, or the argument "-", is given) from man-style nroff into html, and prints ...Missing: PDF package managers
  33. [33]
    man page - ArchWiki - Arch Linux
    Aug 6, 2025 · man pages—abbreviation for "manual pages"—are the form of documentation that is available on almost all UNIX-like operating systems, ...
  34. [34]
    How to install man pages on Ubuntu Linux - nixCraft
    Aug 22, 2023 · This page explains how to install man pages on Ubuntu Linux version 16.04/18.04/20.04/22.04 LTS using the apt command/apt-get command.
  35. [35]
    Overview (GNU Texinfo 7.2)
    Texinfo is a documentation system that uses a single source file to produce both online information and printed output.
  36. [36]
    Stand-alone GNU Info 7.2
    The Info program described here is a stand-alone program, part of the Texinfo distribution, which is used to view Info files on a text terminal.
  37. [37]
    git-help Documentation - Git
    If no command-line option is passed, the help.format configuration variable will be checked. The following values are supported for this variable; they make git ...2.22.0 2019-06-07 · 2.18.0 2018-06-21 · 2.35.0 2022-01-24 · 2.36.0 2022-04-18
  38. [38]
    The rustdoc book
    What is rustdoc? The standard Rust distribution ships with a tool called rustdoc . Its job is to generate documentation for Rust projects.
  39. [39]
    Command-Line Options - catb. Org
    Three conventions for how to distinguish command-line options from ordinary arguments exist; the original Unix style, the GNU style, and the X toolkit style.
  40. [40]
    About the repository README file - GitHub Docs
    You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.
  41. [41]
    Documenting your project with wikis - GitHub Docs
    Documenting your project with wikis. You can use a wiki to share detailed, long-form information about your project.
  42. [42]
    Getting started — Sphinx documentation
    Sphinx is a documentation generator or a tool that translates a set of plain text source files into various output formats, automatically producing cross- ...Sphinx.ext.autodoc · Build your first project · GlossaryMissing: system | Show results with:system
  43. [43]
    docker inspect - Docker Docs
    Docker inspect provides detailed information on constructs controlled by Docker. By default, docker inspect will render results in a JSON array.Docker container inspect · Docker image inspect · Docker network inspectMissing: readable | Show results with:readable
  44. [44]
    Unix Manual, first edition - Nokia
    The first edition of the Unix Programmer's Manual, dated November 3, 1971, is available here in image, Postscript, and PDF format.
  45. [45]
    The Strange Birth and Long Life of Unix - IEEE Spectrum
    Nov 28, 2011 · Man Men: Thompson (ken) and Ritchie (dmr) authored the first unix manual or “man" pages, one of which is shown here. the first edition of the ...<|control11|><|separator|>
  46. [46]
    [PDF] IEEE standard portable operating system interface for computer ...
    IEEE Std 1003.1-1988 is the first of a group of proposed standards known col¬ loquially, and collectively, as POSIXt. The other POSIX standards are described in ...