以最新优先的格式显示日志数据

发布于 2024-09-27 19:09:09 字数 235 浏览 3 评论 0原文

我喜欢以倒数第一的形式记录数据(就像大多数博客和新闻网站组织帖子的方式一样)。

我最熟悉的语言是 C++ 和 Python:有没有办法将日志数据输出到屏幕(stdout)或文件,并且最新条目始终位于顶部?

或者是否有一种方法可以修改 tail 以向下滚动而不是向上滚动的方式显示最新行?

这是否需要一个a la 的窗口系统ncurses

I like having log data in a last-first form (the same way most blogs and news sites organize their posts).

The languages I'm most comfortable in are C++ and Python: is there a way to output log data either to the screen (stdout) or a file with the most recent entry always being on top?

Or is there perhaps a way of modifying tail to show the latest lines in a scrolling-down fashion rather than scrolling-up?

Would this entail needing a windowing system a la ncurses?

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

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

发布评论

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

评论(2

情愿 2024-10-04 19:09:09

使用 tac 命令,您还可以执行以下操作:

watch "tac file.log"

如果您想像这样控制刷新时间,请添加 -n 选项

watch -n 0.3 "tac file.log"

using the tac command you can also do :

watch "tac file.log"

add the -n option if you want to control the refresh time like this

watch -n 0.3 "tac file.log"
ぺ禁宫浮华殁 2024-10-04 19:09:09

终端和控制台驱动程序设计用于以自上而下的方式显示输出。如果您想在另一个方向显示输出,您将需要求助于外部显示管理器(ncurses、HTML 布局引擎等)。

Terminal and console drivers are designed for displaying output in a top-down matter. You will need to resort to an external display manager (ncurses, an HTML layout engine, etc.) if you want to display output in the other direction.

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