标签: linux unix aix
我想在AIX中显示正在运行的系统时钟。 例如,我可以在Ubuntu中使用
watch -n 1 date
Tnx
答案 0 :(得分:1)
您可以使用:
while true; do clear; date; sleep 1; done
此外,如果您想要时钟以及系统状态,可以使用:
topas