Zsh builtin için nasıl yardım mesajı alabilirim?


13

Bir bash yerleşik için kısa bir kullanım mesajı almak istersem, help <builtin>komut isteminde kullanabilirim, örn.

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

Bunu zsh ile nasıl yapabilirim? denedim

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

ve

% help export
zsh: command not found: help

Ayrıca "yardım" kelimesi hiçbir yerde değil man zshbuiltins.

Yanıtlar:


5

@don_crissti bu Arch wiki belgelerine bağlantı sayesinde .
Nedense Arch wiki'deki kod çağrıldığında bu hataya neden olur

/home/velour/.zshrc:unalias:368: böyle bir karma tablo öğesi yok: run-help

zsh - sürüm => zsh 5.1.1 (x86_64-ubuntu-linux-gnu)

böylece işe almak için, aşağıdaki bloğu ekledim ~/.zshrc, sonra takma ad komutları yorumladı.

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

ve sadece

run-help <builtin>

Şimdi anladım

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

@don_crissti Cevabımı hata ve zsh sürümünün ayrıntıları ile güncelledim.
the_velour_fog

Belki de bu
don_crissti

7
Takma adlar çıkarmadan bunu denedim ve sadece zshbuiltins manuel sayfasını alıyorum. Belirli bir yerleşik için orada arama yapmadan nasıl yardım alabilirim?
addison
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.