00. 目录
文章目录
01. 命令概述
apropos命令在 whatis 数据库中查找字符串
apropos命令在一些特定的包含系统命令的简短描述的数据库文件里查找关键字,然后把结果送到标准输出。
02. 命令格式
用法:apropos [选项...] 关键词...
03. 常用选项
-d, --debug 输出调试信息
-v, --verbose 输出详细的警告信息
-e, --exact 对每个关键词都进行严格匹配的搜索
-r, --regex 把每个关键词都当作正则表达式解读
-w, --wildcard 关键词里包含通配符
-a, --and 要求所有的关键词都同时匹配
-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
04. 参考示例
4.1 要求所有的关键词都同时匹配
[deng@localhost ~]$ apropos -a vim
gvim (1) - Vi IMproved, 一个程序员的文本编辑器
rgvim (1) - Vi IMproved, 一个程序员的文本编辑器
rvim (1) - Vi IMproved, 一个程序员的文本编辑器
vim (1) - Vi IMproved, 一个程序员的文本编辑器
vimtutor (1) - Vim 教程
gvimdiff (1) - edit two, three or four versions of a file with Vim an...
gvimtutor (1) - the Vim tutor
vimdiff (1) - edit two, three or four versions of a file with Vim an...
vimrc (5) - Vi IMproved, a programmers text editor
vimrc_event.conf (5) - configuration file for libreport.
vimx (1) - Vi IMproved, a programmers text editor
[deng@localhost ~]$
4.2 等价于whatis ftp
[deng@localhost ~]$ apropos ftp
ftp (1) - Internet 文件传输程序 (file transfer program)
ftpaccess (5) - ftpd的配置档
smbclient (1) - 类似FTP操作方式的访问SMB/CIFS服务器资源...
vsftpd.conf (5) - config file for vsftpd
ftpusers (5) - list of users that may not log in via the FTP daemon
Net::Cmd (3pm) - Network Command class (as used by FTP, SMTP etc)
Net::FTP (3pm) - FTP Client class
pam_ftp (8) - PAM module for anonymous access module
sftp (1) - secure file transfer program
sftp-server (8) - SFTP server subsystem
vsftpd (8) - Very Secure FTP Daemon
[deng@localhost ~]$