Recently, I stumbled over some configuration files. To gather more information about its structure and how the its used, I either do a quick research on the internet (just ask Google) or use the man command directly in the terminal.
In most cases it is obvious by which application the configuration belongs to which configuration file. The man page of the application refers to other man pages for further information and documentation. In the case I have no idea, a man -k file-or-path
or apropos file-or-path
points me sometimes in the right direction.
This approach works in most cases, but not always. Is there a convenient way to get more information in cases where I have no clue (apart from a research on the internet)? What are other strategies? Are there tools (some kind of ZSH plugins) you may recommend?
man -K file-or-path
? – Cristian Ciupitu Aug 06 '14 at 23:55apropos
(latin, I think for "appropriate"). As above, I believe thatman -k
is roughly identical toapropos
. – ericx Aug 07 '14 at 00:12man -K
(please note the capitalized "K" in contrast to my example above) file-or-path is kind of what I was searching for. Thanks @CristianCiupitu! – index0 Aug 07 '14 at 00:15