参考材料:Harley Hahns Guide to Unix and Linux
Chapter 9
——》建议是使用2个terminal windows,one for doing your work, the other for displaying man pages.
——》在阅读一个文档时,可用!command做另一个事
——》当用man read时,可以出现一个文档,但是属于layer 1(command)的。如果我们想查的是system call的read,则可以specifiy the section number:man 2 read
——》有man的文档结构中每个layer的主要内容图
——》对于man文档,可以先查看每个部分的简介:man [part] intro
——》有一节“THE FORMAT OF A MANUAL PAGE”可以查阅,讲的是man的文档中各个块讲的是什么
——》man -f (或whatis)可以查看命令的简单描述,也可以看到在哪些layer中有这个命令的内容
——》man -k 指keyword(或apropos)当你知道你想干什么,但不知有哪些命令时,不好用man了。man -k就是在每个文档的NAME部分中搜索哪些有你指定的关键词
******************************************************************************************
以下是“info system”
***************************************************************************************
第10章中提到:--help查看命令的语法