যদি আমি ব্যাশ বিল্টিনের জন্য একটি সংক্ষিপ্ত ব্যবহারের বার্তা পেতে চাই তবে আমি 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
।