linux – 人们如何找到git的子命令联机帮助页?

前端之家收集整理的这篇文章主要介绍了linux – 人们如何找到git的子命令联机帮助页?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的 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提供了一个手册页.

原文链接:https://www.f2er.com/linux/393177.html

猜你在找的Linux相关文章