Lines Matching full:uptime
0 /* uptime.c - Tell how long the system has been running.8 USE_UPTIME(NEWTOY(uptime, NULL, TOYFLAG_USR|TOYFLAG_BIN))10 config UPTIME11 bool "uptime"15 usage: uptime44 // Uptime45 info.uptime /= 60;46 minutes = info.uptime%60;47 info.uptime /= 60;48 hours = info.uptime%24;49 days = info.uptime/24;