平时在Linux下寻求帮助,一般是使用man来查看命令帮助文档,但前提是必须得知道命令怎么写;
例如:

1
[root@svr ~]# man utime

但是如果想完成某项功能,具体的命令又忘记了,这个时候怎么办呢?

我们可以使用 man -k 关键字,来查找相关的命令;

例如:

1
2
3
4
5
[root@svr ~]# man -k ifconfig
ifcfg (8) - simplistic script which replaces ifconfig IP managment
ifconfig (8) - configure a network interface
ifconfig_selinux (8) - Security Enhanced Linux Policy for the ifconfig processes
pifconfig (8) - display information about a network interface

另外Linux命令有一个同样功能的命令:apropos,它跟man -k其实是一个命令;
用法:opropos 关键字

例如:

1
2
3
4
5
[root@svr ~]# apropos ifconfig
ifcfg (8) - simplistic script which replaces ifconfig IP managment
ifconfig (8) - configure a network interface
ifconfig_selinux (8) - Security Enhanced Linux Policy for the ifconfig processes
pifconfig (8) - display information about a network interface