यदि मैं एक बैश बिलिन के लिए एक संक्षिप्त उपयोग संदेश प्राप्त करना चाहता हूं, तो मैं 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
।