Linux

手冊頁中的數字是什麼意思?

  • February 4, 2013

可能重複:

手冊頁中的數字是什麼意思?

如果我輸入man ls,我LS(1)會在手冊頁的左上角和右上角看到。

我還看到網際網路上的程序以這種方式引用。

前任。man(1), xman(1x), apropos(1), makewhatis(8) and catman(8).

這些數字是什麼(在某些情況下是字母)?

是段號,看

man man

如果提供了一個部分,將指導人們僅查看手冊的該部分。預設操作是按照預先定義的順序在所有可用部分中搜尋並僅顯示找到的第一個頁面,即使頁面存在於多個部分中。

    The table below shows the section numbers of the manual followed by the types of pages they contain.


    1   Executable programs or shell commands
    2   System calls (functions provided by the kernel)
    3   Library calls (functions within program libraries)
    4   Special files (usually found in /dev)
    5   File formats and conventions eg /etc/passwd
    6   Games
    7   Miscellaneous (including macro packages and conventions), e.g. man(7), groff(7)
    8   System administration commands (usually only for root)
    9   Kernel routines [Non standard]

例如,stat有 3 個部分:

$ man -k stat | grep "^stat "
stat (1)             - display file or file system status
stat (2)             - get file status
stat (3p)            - get file status

所以如果你輸入

man 1 stat

它不一樣

man 2 stat

引用自:https://unix.stackexchange.com/questions/63677