Linux上实时显示‘日期’变化
在不存在 /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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 watch 命令,试试这个:
观看 -n 1 日期
Use the watch commad, try this is:
watch -n 1 date
我不知道 BusyBox shell 支持多少,但是在 sh 中你可以这样做:
I don't know how much the BusyBox shell supports, but in sh you could do something like this: