Nếu tôi muốn nhận thông báo sử dụng ngắn gọn cho nội dung bash, tôi có thể sử dụng help <builtin>
tại dấu nhắc lệnh, ví dụ:
$ 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.
Làm thế nào tôi có thể làm điều này trong zsh? Tôi đã thử
% export --help
zsh: bad option: -e
và
% help export
zsh: command not found: help
Ngoài ra từ "trợ giúp" không ở đâu cả man zshbuiltins
.