如何仅在几秒钟内确定SunOS UNIX盒上的正常运行时间?
在Linux上,我可以简单地说cat / proc / uptime&拿第一个论点:
cat /proc/uptime | awk '{print $1}'
我正在尝试在SunOS UNIX机器上执行相同操作,但没有/ proc /正常运行时间.
有一个uptime命令,它提供以下输出:
$uptime 12:13pm up 227 day(s),15:14,1 user,load average: 0.05,0.05,0.05
我真的不想编写代码来将日期转换为仅秒和&我敢肯定以前有人必须有这个要求,但我一直无法在互联网上找到任何东西.
谁能告诉我如何在几秒钟内获得正常运行时间?
TIA
如果您不介意编译小型C程序,可以使用:
原文链接:https://www.f2er.com/bash/383424.html#include <utmpx.h> int main ( ) { int nBootTime = 0; int nCurrentTime = time ( NULL ); struct utmpx * ent; while ( ( ent = getutxent ( ) ) ) { if ( !strcmp ( "system boot",ent->ut_line ) ) { nBootTime = ent->ut_tv.tv_sec; } } printf ( "System was booted %d seconds ago\n",nCurrentTime - nBootTime ); }