显示系统 运行 时钟 AIX

Display system running clock AIX

我想在 AIX 中显示 运行 系统时钟。 例如,我可以在 Ubuntu 中使用

watch -n 1 date

Tnx

您可以使用:

while true; do clear; date; sleep 1; done

此外,如果您想要时钟和系统状态,您可以使用:

topas