man -K <string>
Capital K
é a coisa mais próxima que já vi para fazer isso usando man
.
-K
,--global-apropos
Search for text in all manual pages. This is a brute-force search, and is likely to take some time; if you can, you should specify a section to reduce the number of pages that need to be searched. Search terms may be simple strings (the default), or regular expressions if the--regex
option is used.Note that this searches the sources of the manual pages, not the rendered text, and so may include false positives due to things like comments in source files. Searching the rendered text would be much slower.
$ man -K "Hello World"
Observe que você pode usar -I
para uma correspondência de maiúsculas e minúsculas que é substancialmente mais rápida. Quando executado, man
abrirá a primeira correspondência e depois de fechá-la com q , ofereça-o para:
- veja o próximo ( Retornar )
- pule a atual ( Ctrl + D )
- ou sair ( Ctrl + C ).