help命令 - 显示帮助信息

ID:15596 / 打印

help命令的功能是显示帮助信息,能够输出shell内部命令的帮助内容,但对于外部命令则无法使用,需要用man或info命令进行查看。

语法格式:help 参数 命令名

常用参数:

-d显示命令的简短描述 -s显示短格式的帮助信息
-m使用man手册格式显示帮助信息  

参考示例

以默认格式显示指定命令的帮助信息:

[root@linuxcool ~]# help 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.       The variable CDPATH defines the search path for the directory containing      DIR. Alternative directory names in CDPATH are separated by a colon (:).      A null directory name is the same as the current directory. If DIR begins      with a slash (/), then CDPATH is not used. ………………省略部分输出信息……………… 

以短格式显示指定命令的帮助信息:

[root@linuxcool ~]# help -s cd  cd: cd [-L|[-P [-e]] [-@]] [dir]

以简短格式显示指定命令的帮助信息:

[root@linuxcool ~]# help -d cd  cd - Change the shell working directory. 

以man手册格式显示指定命令的帮助信息:

[root@linuxcool ~]# help -m cd  NAME      cd - Change the shell working directory.   SYNOPSIS      cd [-L|[-P [-e]] [-@]] [dir]   DESCRIPTION      Change the shell working directory.       Change the current directory to DIR. The default DIR is the value of the      HOME shell variable.  ………………省略部分输出信息………………
上一篇: kill命令 - 杀死进程
下一篇: date命令 - 显示或设置系统日期与时间

作者:admin @ 24资源网   2024-10-23

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。