Powershell:如何对非常大的文件中的文本进行流式传输、分页?

发布于 2024-12-01 05:17:25 字数 188 浏览 1 评论 0原文

我有一些巨大的日志文件需要查看。我不想尝试在编辑器中打开它们,并且我希望能够以分页方式滚动它们。似乎 powershell 中有一个 more 的别名,但通过管道传递到它不会执行任何操作,并且 get-help 只会产生“more”。

在我看来,这似乎是一个完全愚蠢的问题,但我还没有弄清楚——如何才能得到类似于 unix more 命令的东西?

I've got some huge log files that I need to view. I don't want to attempt to open them up in an editor, and I'd like to be able to scroll through them in a paginated manner. It seems as if there is an alias for more in powershell but piping to it doesn't do anything and get-help yields only "more."

This seems to me like a totally silly question, but I haven't figured it out yet--how can I get something similar to the unix more command?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌路终见情 2024-12-08 05:17:25

尝试 Out-Host cmdlet:

Get-Content file.txt | Out-Host -Paging

Try the Out-Host cmdlet:

Get-Content file.txt | Out-Host -Paging
绮烟 2024-12-08 05:17:25

这是一种方法:

get-content file | out-host -Paging

This is one way:

get-content file | out-host -Paging
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文