英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论