zoukankan      html  css  js  c++  java
  • man命令及help命令

    一、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.



  • 相关阅读:
    oracle之同义词
    oracle之序列
    oracle之视图
    oracle表空间
    oracle 闪回技术
    oracle权限管理
    oracle的undo表空间
    创建数据库之间的连接
    oracle监听
    oracle11g文件系统库迁移到ASM库上面
  • 原文地址:https://www.cnblogs.com/wuaihua/p/7467163.html
Copyright © 2011-2022 走看看