Linux上实时显示‘日期’变化

发布于 2024-10-22 01:14:24 字数 358 浏览 1 评论 0原文

不存在 /dev/rtc* 的嵌入式 Linux 设备上,如何启动控制台窗口,将实时时钟的值写入控制台,每次改变时都会打勾?

结果如下:

$ **someCmd**
Mon Mar 14 16:43:22 UTC 2011
Mon Mar 14 16:43:23 UTC 2011
Mon Mar 14 16:43:24 UTC 2011
Mon Mar 14 16:43:25 UTC 2011
Mon Mar 14 16:43:26 UTC 2011

等。

设备是运行 BusyBox v1.13.3 的 armv5tejl

On an embedded Linux device that does not present /dev/rtc*, how can I set off a console window writing the value of the Real-Time Clock to the console, on the tick, every time it changes?

Results would be like:

$ **someCmd**
Mon Mar 14 16:43:22 UTC 2011
Mon Mar 14 16:43:23 UTC 2011
Mon Mar 14 16:43:24 UTC 2011
Mon Mar 14 16:43:25 UTC 2011
Mon Mar 14 16:43:26 UTC 2011

etc.

The device is armv5tejl running BusyBox v1.13.3.

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

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

发布评论

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

评论(2

撩动你心 2024-10-29 01:14:24

使用 watch 命令,试试这个:
观看 -n 1 日期

Use the watch commad, try this is:
watch -n 1 date

开始看清了 2024-10-29 01:14:24

我不知道 BusyBox shell 支持多少,但是在 sh 中你可以这样做:

{ while true ; do date ; sleep 0.1 ; done } | uniq

I don't know how much the BusyBox shell supports, but in sh you could do something like this:

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