按时间倒序记录 cat

发布于 2024-12-23 06:53:56 字数 32 浏览 2 评论 0原文

有没有办法让 Log cat 条目按时间倒序排列?

Is there any way to make the Log cat entries in in Reverse Chronological Order?

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

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

发布评论

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

评论(1

从﹋此江山别 2024-12-30 06:53:56

Debian / Ubuntu 软件包 coreutils 中的 tac(1) 实用程序可以轻松地反向打印文件。 tac /path/to/log/file

如果您没有安装 tac(1),也许您已经安装了 nl(1),安装了 sort(1)cut(1);尝试 nl /path/to/log/file |排序-rn |切-f2-

The tac(1) utility from the Debian / Ubuntu package coreutils can easily print files in reverse. tac /path/to/log/file

If you don't have tac(1) installed, perhaps you have nl(1), sort(1), and cut(1) installed; try nl /path/to/log/file | sort -rn | cut -f2-

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