Well, the command help returns a two column list which includes the syntax of all builtin commands.
The command help -d returns exactly the same as above.
The command help -d printf returns a short description of the command printf:
printf - Formats and prints ARGUMENTS under control of the FORMAT.
The command help -d p returns short descriptions of all the commands starting with p:
popd - Remove directories from stack.
printf - Formats and prints ARGUMENTS under control of the FORMAT.
pushd - Add directories to stack.
pwd - Print the name of the current working directory.
So, is there some way of producing a list of short descriptions for all commands?
help -d \*orhelp -d "*"?help -d *and it didn't work. I wonder why I didn't think of backslash or quotes. Probably too tired. Thank you for your suggestion.