您的位置:首页 > 运维架构 > Linux

linux man 命令的使用方式 与 man 命令的解释

2010-12-02 11:40 274 查看
在Linux的shell下经常要使用man命令来查看一些不熟悉的命令的使用方法。man就是manual的缩写,用来查看系统中自带的各种参考手册,但是手册页分为好几个部分,可大家知道数字代表什么意思吗?如下所示:

  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]

  在shell中输入 man+数字+命令/函数 即可以查到相关的命令和函数。若不加数字,那man命令默认从数字较小的手册中寻找相关命令和函数。



如要查看proc 文件的格式描述,执行如下命令

man 5 proc

上述命令你就能看到/etc/proc下面每个文件的格式描述,代表什么信息等;这样你就可以不用再到网上找相关信息了,直接看最原始版:)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: