1、man[manual]: /usr/bin/man
獲得命令或配置文件的幫助文檔,優先查看命令的幫助
man[命令或配置文件]//會調用more
e.g. manls查看ls命令的幫助信息
manservices查看配置文件services的幫助信息
附: 在Linux系統中幫助文件分為九種
如: man5 passwd //查看配置文件的幫助
默認: man1 passwd
2、info[information]:/usr/bin/info
說明:與man沒有太大的區別,只不過是信息的呈現方式不太一樣,並且在UNIX系 統中並沒有這個命令。
3、獲取相關文件簡短的信息:
whatis[searchthe whatis database for strings]
/usr/bin/whatisapropos
/usr/sbin/makewhatis
獲得索引的簡短說明信息,找到這個命令最基本的用途
whatis[任何關鍵字]
附: [命令]- - help
主要用於獲取命令的選項信息
apropos[文件]
用於獲取文件的配置信息,類似與:man-k [文件]
makewhatis
建立whatis和apropos搜索使用的數據庫,當使用這兩個命令發生錯誤時,就是 whatisdatabase沒有建立
4、help
查看Shell內置命令的文件幫助
如: mancd 與helpcd 的不同
另: 關於Shell更詳細的講解,請參考另外幾篇博客
《四天精通Shell編程》系列:
http://blog.csdn.net/zjf280441589/article/details/17455515
http://blog.csdn.net/zjf280441589/article/details/17467069
http://blog.csdn.net/zjf280441589/article/details/17487351
http://blog.csdn.net/zjf280441589/article/details/17503985