man手册

在Linux系统中,我们不可能记住所有的命令,那怎么办,使用man手册去查吧。

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]

上面的信息是通过man man命令得到的,也就是说,我们在输入man命令查看帮助时,还可以指定section numbers,因为有些关键字可能在多个section里面,这样方便我们查找到正确的信息。编写linux下的应用程序,也可以通过man手册去查找相关的函数调用原型等等信息,所有这个man手册是很有用处的。

你可能感兴趣的:(man手册)