1. 程式人生 > >獲取幫助命令

獲取幫助命令

安裝中文man 源文件 獲取幫助 off arch arc lane tab 指定

whatis
基於數據庫的查找
優點:查找速度快
缺點:沒有實時性

數據庫文件
Centos6:/var/cache/man/whatis
Centos7:/var/cache/man/index.db
更新數據庫文件
Centos6:makewhatis
Centos7:mandb

** help
help cd
help pwd
help enable


ls --help

***** man

中文man使用方法:
1.掛載光盤
mount /dev/cdrom /media/
2.安裝中文man的軟件包
rpm -ivh /media/Packages/man-pages-zh-CN-1.5.2-4.el7.noarch.rpm
3.將中文man的路徑寫的man的配置文件
gedit /etc/man_db.conf 增加一行,內容如下
MANDATORY_MANPATH /usr/share/man/zh_CN
4.man -a ls
q
回車

man的使用
f向下翻一頁
b向上翻一頁
d向下翻半頁
u向上翻半頁
** G 跳至尾頁
** g 跳至首頁
** 搜索關鍵字
/關鍵字 n 向下 N向上
?關鍵字 n 向上
q 退出man

man的章節,man的關鍵字有多個文件與之匹配,則按類型,劃分為以下9個章節
* 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 -a 關鍵字 依次查看指定關鍵字的所有章節
man -w 關鍵字 查看關鍵字匹配到的第一個章節的來源文件
man -aw 關鍵字 查看關鍵字匹配到的所有章節的來源文件
man -f 關鍵字 等於 whatis 關鍵字

獲取幫助命令