linux

Posted Ella-Wu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux相关的知识,希望对你有一定的参考价值。

一、man命令

 

man命令常用工具命令 man命令是Linux下的帮助指令,通过man指令可以查看Linux中的指令帮助、配置文件帮助和编程帮助等信息。

语法:

man(选项)(参数)

选项:

-a:在所有的man帮助手册中搜索;

-f:等价于whatis指令,显示给定关键字的简短描述信息;

-P:指定内容时使用分页程序;

-M:指定man手册搜索的路径。

参数:

数字:指定从哪本man手册中搜索帮助;

关键字:指定要搜索帮助的关键字。

实例:

我们输入man ls,它会在最左上角显示“LS(1)”,在这里,“LS”表示手册名称,而“(1)”表示该手册位于第一节章,同样,我们输man ifconfig它会在最左上角显示“IFCONFIG(8)”。也可以这样输入命令:“man [章节号] 手册名称”。

 

man是按照手册的章节号的顺序进行搜索的,比如:

man sleep

只会显示sleep命令的手册,如果想查看库函数sleep,就要输入:

man 3 sleep

二、help命令

 

help命令Shell内建命令 help命令用于显示shell内部命令的帮助信息。help命令只能显示shell内部的命令帮助信息。而对于外部命令的帮助信息只能使用man或者info命令查看。

语法:

help(选项)(参数)

可使用“文件名--help”获取帮助 : 例如: 查看ls命令帮助的命令为:ls –-help(不使用man方法)

 

选项:

-s:输出短格式的帮助信息。仅包括命令格式。

参数:

内部命令:指定需要显示帮助信息的shell内部命令。

 

实例:

使用help命令显示shell内部shopt命令的帮助信息,输入如下命令:

help shopt    #获取shopt命令的帮助信息

shopt: shopt [-pqsu] [-o long-option] optname [optname...]

Toggle the values of variables controlling optional behavior.

The -s flag means to enable (set) each OPTNAME;the -u flag

unsets each OPTNAME.The -q flag suppresses output; the exit

status indicates whether each OPTNAME is set or unset.The -o

option restricts the OPTNAMEs to those defined for use with

`set -o‘. With no options, or with the -p option, a list of all

settable options is displayed, with an indication of whether or

not each is set.







以上是关于linux的主要内容,如果未能解决你的问题,请参考以下文章

LinuxLinux博客汇总

Linuxlinux命令大全

linuxlinux 安装 protobuf 2.5.0 版本

LinuxLinux使用简单密码|短密码

linuxlinux shell 判断是安装了某个软件

Linuxlinux压缩和解压缩命令大全