web-dev-qa-db-ja.com

zsh builtinのヘルプメッセージを取得するにはどうすればよいですか?

Bashビルトインの簡単な使用法メッセージを取得したい場合は、コマンドプロンプトでhelp <builtin>を使用できます。

$ help export
export: export [-fn] [name[=value] ...] or export -p
    Set export attribute for Shell variables.

    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.

    Options:
      -f        refer to Shell functions
      -n        remove the export property from each NAME
      -p        display a list of all exported variables and functions

    An argument of `--' disables further option processing.

    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.

Zshでこれを行うにはどうすればよいですか?私はもう試した

% export --help
zsh: bad option: -e

そして

% help export
zsh: command not found: help

また、「ヘルプ」という単語はman zshbuiltinsのどこにもありません。

13
the_velour_fog

これを介してリンクする@don_crisstiに感謝 Arch wiki documentation
何らかの理由で、Arch wikiのコードにより、呼び出し時にこのエラーが発生します

/home/velour/.zshrc:unalias:368:そのようなハッシュテーブル要素はありません:run-help

zsh --version => zsh 5.1.1(x86_64-ubuntu-linux-gnu)

それを機能させるために、以下のブロックを~/.zshrcに追加し、エイリアスコマンドをコメント化しました。

autoload -Uz run-help
autoload -Uz run-help-git
autoload -Uz run-help-svn
autoload -Uz run-help-svk
#unalias run-help
#alias help=run-help

と単に呼び出す

run-help <builtin>

だから今私は得る

% run-help export

export [ name[=value] ... ]
       The specified names are marked for automatic export to the envi-
       ronment  of subsequently executed commands.  Equivalent to type-
       set -gx.  If a parameter specified does not already exist, it is
       created in the global scope.
5
the_velour_fog