Linux 中 whatis 命令输出中括号内的数字代表什么意思

Linux 中 whatis 命令输出中括号内的数字代表什么意思

例如,

[root@fedora ~]# whatis pwd
pwd (1p) - return working directory name
pwd (1) - print name of current/working directory
pwd [builtins] (1) - bash built-in commands, see bash(1)
pwd.h [pwd] (0p) - password structure

0p,1,1p 是什么?有时,我还会在括号中看到 rpm 字样。

答案1

手册页部分。您可以通过输入以下内容来消除歧义,以找到所需的手册部分

man 1 pwd

例如,假设你输入

allhats2:~> whatis crontab
crontab (5)          - tables for driving cron
crontab (1)          - maintain crontab files for individual users (V3)

如果你想查看表格结构的条目,你可以输入

man 5 crontab

相关内容