欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

linux下的查看帮助命令:whatis,man

linux下的查看帮助命令:whatis,man

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/rl529014/article/details/50221561

俗话说:Linux一切皆文件,对Linux的操作也主要是通过命令来完成的,这不同与Windows操作系统,点击几下就好了,这也就意味着有更多的命令需要去学习和记忆,当然这么多命令要记得很清楚是不可能的,所以Linux提供了一些用于查看帮助的命令,下面就简单介绍一下吧。                

(1)whatis:用于查询一个命令执行什么功能,并将查询结果打印到终端上。
               

例:                

[root@localhost ~]# whatis ls                 

(1) - list directory contents ls                

 (1p) - list directory contents                 

[root@localhost ~]# whatis cp cp                 

(1) - copy files and directories cp                

 (1p) - copy files                 

[root@localhost ~]# whatis chown chown                

 (1) - change file owner and group chown                

 (1p) - change the file ownership chown                

 (2) - change ownership of a file chown                 

(3p) - change owner and group of a file                 

image.png
               

(2)man:Linux提供了丰富的帮助手册,当你需要查看某个命令的参数时不必到处上网查找,只要man一下即可。                

比如我执行 man pwd 命令,显示如下:                

image.png                


               

后面还有的话再继续添加吧。欢迎大家补充。                

来自 https://blog.csdn.net/rl529014/article/details/50221561                            


linux命令之 whatis

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wz947324/article/details/80328175

whatis命令是用于查询一个命令执行什么功能,并将查询结果打印到终端上,相当于 man -f

使用语法:

whatis 命令/系统调用/库函数/特殊文件名

举例:

[root@localhost ~]# whatis ls
ls                   (1)  - list directory contents
ls                   (1p)  - list directory contents

[root@localhost ~]# whatis cp
cp                   (1)  - copy files and directories
cp                   (1p)  - copy files

[root@localhost ~]# whatis chown
chown                (1)  - change file owner and group
chown                (1p)  - change the file ownership
chown                (2)  - change ownership of a file
chown                (3p)  - change owner and group of a file

[root@localhost ~]# whatis man
man                  (1)  - format and display the on-line manual pages
man                  (1p)  - display system documentation
man                  (7)  - macros to format man pages
man                 (rpm) - A set of documentation tools: man, apropos and whatis.
man-pages           (rpm) - Man (manual) pages from the Linux Documentation Project.
man.config [man]     (5)  - configuration data for man

执行whatis后,将会查找一个存储所有命令相关信息的数据库,根据命令名返回相关结果。

如果需要重建这个命令相关信息的数据库,执行以下命令:

makewhatis


普通分类: