以最新优先的格式显示日志数据
我喜欢以倒数第一的形式记录数据(就像大多数博客和新闻网站组织帖子的方式一样)。
我最熟悉的语言是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 tac 命令,您还可以执行以下操作:
如果您想像这样控制刷新时间,请添加 -n 选项
using the tac command you can also do :
add the -n option if you want to control the refresh time like this
终端和控制台驱动程序设计用于以自上而下的方式显示输出。如果您想在另一个方向显示输出,您将需要求助于外部显示管理器(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.