When invoking, say '$ man zshbuiltins' if I want to read up on zsh's 'read' command, using the slash to start a search will give you a hundred hits of the string 'read' before you get to the actual command 'read', and one way to help get directly to the command it to search for " read" because the spaces take to to the actual subsection of the command. However it would be cool if it were possible to do something like that directly from the command line sorta like:
$ man zshbuiltins --search " read"
... I don't belive it's possible but can someone suggest a way this might be achieved?
info
instead ofman
(you might need to install azsh-doc
package or similar). And doinfo zsh read
(see alsoi
andI
withininfo
). – Stéphane Chazelas Oct 04 '22 at 20:41