在我的
linux系统上,我可以做“man git log”(注意空格),这将显示git-log(1)(带破折号)的联机帮助页,如预期的那样.
在我的MacOSX机器上,“man git log”仅显示git(1)的手册页.
linux的人怎么知道两个参数“git”和“log”应该结合起来找到“git-log”联机帮助页?如何在OSX中获得相同的结果?
解决方法
这是许多
Linux系统上使用的
particular implementation of
man
的一个功能.参考
documentation(对于man),在-no-subpages选项的描述中提到:
--no-subpages
By default,
man
will try to interpret pairs of manual page
names given on the command line as equivalent to a single
manual page name containing a hyphen or an underscore. This
supports the common pattern of programs that implement a
number of subcommands,allowing them to provide manual pages
for each that can be accessed using similar Syntax as would be
used to invoke the subcommands themselves.
人的其他实现可以做不同的事情.例如(不好documented,但如果你研究它),快速检查OSX上的man git状态El Capitan显示它试图找到状态的手册页.但是,man git-status提供了一个手册页.