Go语言的godoc在命令提示符上

huangapple go评论87阅读模式
英文:

Go language's godoc on command prompt

问题

这个命令显示了fmt包的文档。但是这个文档内容很多,而且不支持命令提示符的分页控制(/p)。

请告诉我如何在命令提示符中获取分页文档。

英文:

<pre>
godoc fmt
</pre>

This command displays the documentation of fmt package. But this has a lot of content and does not support paging control(/p) of command prompt.
<pre>
godoc fmt /p
</pre>

Please let me know how can I get paged documentation in command prompt.

答案1

得分: 2

你可以尝试这样做:

godoc fmt | more

more 不仅适用于“godoc”,还适用于任何命令的输出。按下空格键可以翻到下一页。

英文:

you can try this:

godoc fmt | more

more is not specific for "godoc" and should work for the output of any command. press the spacebar to move to the next page.

huangapple
  • 本文由 发表于 2011年8月15日 17:01:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/7063222.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定