首页 > 代码库 > Linux man命令的学习

Linux man命令的学习

man -f command

 等同于

whatis command

命令,这样你就可以知道man里面关于这个命令的所有章节都是什么,然后可以使用如下命令查看命令帮助!

man 章节号 command

例如:

man -f man           //命令执行结果
man                  (1)  - format and display the on-line manual pagesman                  (1p)  - display system documentationman                  (7)  - macros to format man pagesman.config [man]     (5)  - configuration data for manman [manpath]        (1)  - format and display the on-line manual pagesman-pages            (7)  - conventions for writing Linux man pages
man 7 man

 

Linux man命令的学习