在 Linux 系统上快速获取命令的帮助信息
几种方法:
-
help 命令
-
man 命令
-
info 命令
-
命令 --help
man 章节分类如下
1 - commands
2 - system calls
3 - library calls
4 - special files
5 - file formats and convertions
6 - games for linux
7 - macro packages and conventions
8 - system management commands
9 - other
其中
1 是普通的命令
2 是系统调用,如open,write之类的
3 是库函数,如printf,fread
4 是特殊文件,也就是/dev下的各种设备文件
5 是指文件的格式,比如passwd, 就会说明这个文件中各个字段的含义
6 是给游戏留的,由各个游戏自己定义
7 是附件还有一些变量,比如向environ这种全局变量在这里就有说明
8 是系统管理用的命令,这些命令只能由root使用,如ifconfig
使用方法 man [章节] (命令)