The following command gives many manuals of Zsh
man zsh<tab>

I would like to browse them fast to search the word compinit.
How can you search the word compinit fast in the manuals in Zsh?
|
1
|
|
|
|
|
|
Often for this kind of thing man -k compinit works, because authors are sensible enough to put lots of identifiers into the "short description" of the man page. This doesn't seem to be the case here ... so you're going to have to grep through the source. Which is gzipped ...
or if you don't have zgrep:
There are more elegant ways to do this, but that gives you a list of how often compinit appears in each file:
|
||
|
|
|
Using the internet is probably the best way. The other approach is to use the zshall manpage, which contains all the manpages together. You can then search for compinit in whatever viewer you're using. EDIT: I just remembered a better way of doing this: Use zsh's
This will take you to the manpage that zsh thinks is most appropriate for the topic. It also works for non-zsh related topics like ps, grep, etc, but has been adjusted to work for zsh topics as well. If for some reason
to do so. |
||||||||||||||
|
|
|
You could use the internet... all of the man pages are on it... just prefix your searches with
(If you know where they are located on the harddrive... you might be able to grep them... I don't know as I have not ever needed to myself) |
|||
|
|