107 lines
1.9 KiB
C
107 lines
1.9 KiB
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
void print_time(void) {
|
|
struct timeval now;
|
|
struct tm * timeinfo;
|
|
char clocktime[10];
|
|
|
|
gettimeofday(&now, NULL);
|
|
timeinfo = localtime((time_t *)&now.tv_sec);
|
|
strftime(clocktime, 80, "%H:%M:%S", timeinfo);
|
|
|
|
printf(" %s ", clocktime);
|
|
}
|
|
|
|
#define MINUTE (60)
|
|
#define HOUR (60 * MINUTE)
|
|
#define DAY (24 * HOUR)
|
|
void print_seconds(int seconds) {
|
|
if (seconds > DAY) {
|
|
int days = seconds / DAY;
|
|
seconds -= DAY * days;
|
|
printf("%d day%s, ", days, days != 1 ? "s" : "");
|
|
}
|
|
if (seconds > HOUR) {
|
|
int hours = seconds / HOUR;
|
|
seconds -= HOUR * hours;
|
|
int minutes = seconds / MINUTE;
|
|
printf("%2d:%02d", hours, minutes);
|
|
return;
|
|
} else if (seconds > MINUTE) {
|
|
int minutes = seconds / MINUTE;
|
|
printf("%d minute%s, ", minutes, minutes != 1 ? "s" : "");
|
|
seconds -= MINUTE * minutes;
|
|
}
|
|
|
|
printf("%2d second%s", seconds, seconds != 1 ? "s" : "");
|
|
}
|
|
|
|
void print_uptime(void) {
|
|
FILE * f = fopen("/proc/uptime", "r");
|
|
if (!f) return;
|
|
|
|
int seconds;
|
|
|
|
char buf[1024] = {0};
|
|
fgets(buf, 1024, f);
|
|
char * dot = strchr(buf, '.');
|
|
*dot = '\0';
|
|
dot++;
|
|
dot[3] = '\0';
|
|
|
|
seconds = atoi(buf);
|
|
|
|
printf("up ");
|
|
|
|
print_seconds(seconds);
|
|
}
|
|
|
|
void show_usage(int argc, char * argv[]) {
|
|
printf(
|
|
"uptime - display system uptime information\n"
|
|
"\n"
|
|
"usage: %s [-p]\n"
|
|
"\n"
|
|
" -p \033[3mshow just the uptime info\033[0m\n"
|
|
" -? \033[3mshow this help text\033[0m\n"
|
|
"\n", argv[0]);
|
|
}
|
|
|
|
int main(int argc, char * argv[]) {
|
|
int just_pretty_uptime = 0;
|
|
|
|
if (argc > 1) {
|
|
for (int i = 1; i < argc; ++i) {
|
|
if (argv[i][0] == '-') {
|
|
char *c = &argv[i][1];
|
|
while (*c) {
|
|
switch (*c) {
|
|
case 'p':
|
|
just_pretty_uptime = 1;
|
|
break;
|
|
case '?':
|
|
show_usage(argc, argv);
|
|
return 0;
|
|
}
|
|
c++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if (!just_pretty_uptime)
|
|
print_time();
|
|
print_uptime();
|
|
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
|