Como posso obter uma mensagem de ajuda para o zsh builtin's?

9

Se eu quiser receber uma breve mensagem de uso para um bash builtin, posso usar help <builtin> em um prompt de comando, por exemplo

$ 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.

Como posso fazer isso em zsh? Eu tentei

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

e

% help export
zsh: command not found: help

Além disso, a palavra "ajuda" não está em nenhum lugar em man zshbuiltins .

    
por the_velour_fog 12.05.2016 / 02:03

1 resposta

5

obrigado a @don_crissti linkando por meio desta documentação do wiki do Arch .
Por algum motivo, o código no wiki do Arch causa esse erro na invocação

/home/velour/.zshrc:unalias:368: no such hash table element: run-help

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

para que funcione, adicionei o bloco abaixo ao ~/.zshrc e, em seguida, comentei os comandos do alias.

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

e simplesmente invocar com

run-help <builtin>

Então, agora eu recebo

% 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.
    
por 12.05.2016 / 02:20