一位巨巨的博客
我主要是加工(准确来讲,是精简化),以及加上我自己的学习感悟,侵权请联系我。
另外,这只是我的学习笔记,对于Linux目前还是完全是个门外汉,有不对的地方欢迎评论指出。
文章目录
Linux 学习笔记 03
whatis命令
-
概述
用来显示在线手册说明。 -
格式
Usage: whatis [OPTION...] 关键词...
-d, --debug 输出调试信息
-v, --verbose 输出详细的警告信息
-r, --regex 把每个关键词都当作正则表达式解读
-w, --wildcard 关键词里包含通配符
-l, --long 不要把输出按终端宽度截断
-C, --config-file=文件 使用该用户设置文件
-L, --locale=区域 定义本次搜索所使用的区域设置
-m, --systems=系统 use manual pages from other systems
-M, --manpath=路径 设置搜索手册页的路径为“路径”
-s, --sections=列表, --section=列表
search only these sections (colon-separated)
-?, --help give this help list
--usage give a short usage message
-V, --version print program version
举例:
[deng@localhost ~]$ whatis ls
ls (1) - 列目录内容
ls (1p) - list directory contents
[deng@localhost ~]$ whatis cp
cp (1) - 复制文件和目录
cp (1p) - copy files
[deng@localhost ~]$ whatis chown
chown (1) - 修改文件所有者和组别
chown (1p) - change the file ownership
chown (2) - change ownership of a file
chown (3p) - change owner and group of a file
[deng@localhost ~]$ whatis man
man (1) - 格式化并显示在线帮助手册页
man (7) - 格式化手册页的宏
man (1p) - display system documentation
[deng@localhost ~]$
whereis命令
-
概述
whereis命令用来定位命令的二进制程序、源代码文件和man手册页等相关文件的路径。
whereis命令查找速度非常快,因为它不是在磁盘中乱找,而是在一个数据库中查询;
数据库是linux系统自动创建的,包含有本地所有文件的信息,并且每天通过自动执行updatedb命令更新一次。正因为这样,whereis命令的搜索结果有时候会不准确,比如刚添加的文件可能搜不到,
原因就是该数据库文件没有被更新。
- 格式
用法:
whereis [选项] 文件
选项:
-b 只搜索二进制文件
-B <目录> 定义二进制文件查找路径
-m 只搜索 man 手册
-M <目录> 定义 man 手册查找路径
-s 只搜索源代码
-S <目录> 定义源代码查找路径
-f 终止 <目录> 参数列表
-u 搜索不常见记录
-l 输出有效查找路径
举例:
[root@localhost ~]# whereis git
git: /usr/bin/git /usr/share/man/man1/git.1.gz
[root@localhost ~]# whereis -b git
git: /usr/bin/git
[root@localhost ~]# whereis -m git
git: /usr/share/man/man1/git.1.gz
[root@localhost ~]# whereis -s git
git:
[root@localhost ~]# whereis -u git
git: /usr/bin/git /usr/share/man/man1/git.1.gz
[root@localhost ~]# whereis -l git
bin: /usr/bin
bin: /usr/sbin
bin: /usr/lib
help命令
-
help命令用于显示shell内部命令的帮助信息。
-
格式
help [参数] shell内部命令
参数:
-d 输出每个命令的简短描述
-s 输出短格式的帮助信息
-m 以伪man手册的格式显示帮助信息
help命令只能显示shell内部命令的帮助信息,而linux系统中绝大多数命令是外部命令,所以help命令的作用非常有限。而对于外部命令的帮助信息可以使man命令或者info命令查看。
- 举例
[root@localhost ~]# help cd
[root@localhost ~]# help -s cd
cd: cd [-L|[-P [-e]]] [dir]
[root@localhost ~]#
[root@localhost ~]# help -d cd
cd - Change the shell working directory.
[root@localhost ~]#
查看外部命令cat的用法
[root@localhost ~]# cat --help
用法:cat [选项]... [文件]...
将[文件]或标准输入组合输出到标准输出。
man命令
-
概述
man 实际上是 manual (手册)的缩写。
它是系统参考手册的一个接口。
Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。
- 格式
Usage: man [OPTION...] [章节] 手册页...
-a, --all 寻找所有匹配的手册页
-d, --debug 输出调试信息
-D, --default 将所有选项都重置为默认值
--warnings[=警告] 开启 groff 的警告
-f, --whatis 等同于 whatis
-h 显示man的语法和参数说明,执行完成后退出程序。
-k, --apropos 等同于 apropos将搜索whatis数据库,模糊查找关键字
-S, -s, --sections=列表 使用以半角冒号分隔的章节列表
-t, --troff 使用 groff 对手册页排版
-w, --where, --path, --location
输出手册页的物理位置
-W, --where-cat, --location-cat
输出 cat 文件的物理位置
-c, --catman 由 catman 使用,用来对过时的 cat
页重新排版
-C, --config-file=文件 使用该用户设置文件
-K, --global-apropos search for text in all pages
-M, --manpath=路径 设置搜索手册页的路径为“路径”
-?, --help give this help list
--usage give a short usage message
-V, --version print program version
-R, --recode=编码 output source page encoded in ENCODING
寻找手册页:
-L, --locale=区域
定义本次手册页搜索所采用的区域设置
-m, --systems=系统 use manual pages from other systems
-e, --extension=扩展
将搜索限制在扩展类型为“扩展”的手册页之内
-i, --ignore-case 查找手册页时不区分大小写字母
(默认)
-I, --match-case 查找手册页时区分大小写字母。
--regex show all pages matching regex
--wildcard show all pages matching wildcard
--names-only make --regex and --wildcard match page names only,
not descriptions
- 文档的小标题对应的内容
NAME 命令的名称及功能简要说明
SYNOPSIS 参数的大致使用方法
DESCRIPTION 命令功能详细介绍,包括每一个选项的意义
EXAMPLES 使用示例(附带简单说明)
OVERVIEW 概述
DEFAULTS 默认的功能
OPTIONS 具体的可用选项(带介绍)
ENVIRONMENT 环境变量
FILES 用到的文件
SEE ALSO 相关的资料
HISTORY 维护历史与联系方式
-
man命令中常用按键以及用途
- 空格键 向下翻一页
- / 从上至下搜索某个关键词,如“/linux”
- n 定位到下一个搜索到的关键词
- N 定位到上一个搜索到的关键词
- q 退出帮助文档
-
举例暂略