码迷,mamicode.com
首页 > 系统相关 > 详细

Linux命令(17):help命令

时间:2016-11-10 22:09:10      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:help命令

help命令


功能说明

    help命令只能显示shell内部的命令帮助信息。而对于外部命令的帮助信息只能使用man或者info命令查看,还可以使用--help命令显示命令的使用信息。用法如下:

  help (选项) (参数)

命令参数

选项含义
-d输出每个主题的简短描述
-m以 man 手册的格式显示使用方法
-s显示简单的帮助信息

示例

    查使用help显示内部cd命令的帮助信息

[root@c7 ~]# type cd                                       #查看cd是内嵌命令

cd 是 shell 内嵌

[root@c7 ~]# help cd                                       #查看cd帮助信息

cd: cd [-L|[-P [-e]]] [dir]

    Change the shell working directory.

    

    Change the current directory to DIR.  The default DIR is the value of the

    HOME shell variable.

...略

[root@c7 ~]# help -d cd                                   #使用-d选项,查看命令的简短描述

cd - Change the shell working directory.

[root@c7 ~]# help -m cd                                  #使用-m选项,以man手册查看

NAME

    cd - Change the shell working directory.


SYNOPSIS

    cd [-L|[-P [-e]]] [dir]


DESCRIPTION

...略

[root@c7 ~]# help -s cd                                    #使用-s选项,简单帮助信息

cd: cd [-L|[-P [-e]]] [dir]

本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1871458

Linux命令(17):help命令

标签:help命令

原文地址:http://zhaodongwei.blog.51cto.com/4233742/1871458

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!