Command

括號在“mklost+found(8)”之類的命令描述中是什麼意思

  • September 28, 2014

在Google搜尋 linux 命令時,我經常在括號中看到這樣的數字:

mklost+found(8)

這是什麼意思?

它是程序的版本號,對某些標準的引用,還是什麼?

數字是指系統參考手冊中相應頁面所在的部分,例如對於 command date,(date(1),在您的情況下),1 是指“使用者命令”部分,可以通過執行命令訪問man 1 date.

另請參閱man man。它列出了所有標準部分:

手冊的標準部分包括:

  1      User Commands

  2      System Calls

  3      C Library Functions

  4      Devices and Special Files

  5      File Formats and Conventions

  6      Games et. Al.

  7      Miscellanea

  8      System Administration tools and Deamons

發行版根據其具體情況自定義手冊部分,其中通常包括其他部分。

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