内置 set 的手册页在哪里?

内置 set 的手册页在哪里?

当我输入命令时

man set

它提供了 set 命令的 postgresql 9.3.6 手册页文档。(也许我需要明确说明我的机器上安装了 postgres)。但是,我对 postgres 中的 set 命令不感兴趣,而是对内置的 set 命令感兴趣。我的问题是如何查看内置 set 命令的手册页?

答案1

要获取有关bash内置功能的帮助,如set,请使用:

help set

否则,请运行man bash并继续搜索set

文档

要了解更多信息help,请运行help 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 specifiying a help topic

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

相关内容