仅在几秒钟内获得SunOS UNIX盒的正常运行时间

前端之家收集整理的这篇文章主要介绍了仅在几秒钟内获得SunOS UNIX盒的正常运行时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何仅在几秒钟内确定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程序,可以使用:
#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 );    
}

资料来源:http://xaxxon.slackworks.com/rsapi/

原文链接:https://www.f2er.com/bash/383424.html

猜你在找的Bash相关文章