📜  帮助 Linux 中的命令与示例

📅  最后修改于: 2022-05-13 01:57:27.648000             🧑  作者: Mango

帮助 Linux 中的命令与示例

如果您是 LINUX 操作系统的新手,并且在处理 LINUX 提供的命令行实用程序时遇到问题,那么您首先需要了解帮助命令,正如它的名字所说,它可以帮助您了解任何内置命令。
如前所述, help命令仅显示有关 shell 内置命令的信息。这是它的语法:

// syntax for help command

$help [-dms] [pattern ...]

上面语法中指定的模式是指您想知道的命令,如果它与任何 shell 内置命令匹配,则help提供有关它的详细信息,如果不匹配,则help打印帮助主题列表为了您的方便。这里的 d、m 和 s 是可以与help命令一起使用的选项。

使用帮助命令

为了让您更容易理解帮助命令的作用,让我们尝试帮助命令来了解帮助本身。

// using help

$help help
help: help [-dms] [pattern...]
    Display information about builtin commands.

    Displays brief summaries of builtin commands. If PATTERN IS
    specified, gives detailed help on all commands matching PATTERN,
    otherwise the list of help topics is printed.

    Options:
      -d        output short description for each topic
      -m        display usage in pseudo-manpage format
      -s        output only a short usage synopsis for each topic matching
        PATTERN

    Arguments:
      PATTERN   Pattern specifying a help topic

    Exit Status:
    Returns success unless PATTERN is not found or an invalid option is given.

/* so that's what help command
does telling everything
about the command and 
helping you out */

帮助命令的选项

  • -d 选项:当您只想获得有关任何 shell 内置命令的概述时使用它,它只提供简短描述。
  • -m 选项:它以伪手册页格式显示使用情况。
  • -s 选项:它只显示每个主题匹配的简短用法概要。

使用选项帮助

  • 使用 -d :此选项仅让您了解命令的作用,而无需提供有关其选项和其他内容的详细信息。
    // using help with -d
    
    $help -d help
    help - Display information about builtin commands.
    
  • 使用 -s :此选项适用于您只想了解命令语法的情况。
    // using help with -s 
    
    $help -s help
    help: help [-dms] [pattern ...]
    
  • 使用 -m :这用于以伪手册页格式显示有关命令的信息。
    // using help with -m
    
    $help -m help
    NAME
        help - Display information about builtin commands.
    SYNOPSIS
        help [-dms] [pattern ...]
    DESCRIPTION
        Display information about builtin commands.
    
        Displays brief summaries of builtin commands. If PATTERN IS
        specified, gives detailed help on all commands matching PATTERN,
        otherwise the list of help topics is printed.
    
        Options:
          -d        output short description for each topic
          -m        display usage in pseudo-manpage format
          -s        output only a short usage synopsis for each topic matching
            PATTERN
    
        Arguments:
          PATTERN   Pattern specifying a help topic
    
        Exit Status:
        Returns success unless PATTERN is not found or an invalid option is given.
    
    SEE ALSO
        bash(1)
    IMPLEMENTATION
        GNU bash,version 4.3.11(1)-release (i686-pc-linux-gnu)
        Copyright (C) 2013 Free Software Foundation, Inc.
        License GPLv3+: GNU GPL version 3 or later 
    
    

这就是关于帮助命令的全部内容。