1 2 3 4 5 6 7 8 9 10 11 12 13
#include "uptime.h" #include "common.h" #include <stdio.h> void display_days() { printf("%s", run_command_s("uptime | awk '{print $3}' && echo \" days\"")); } void display_time() { printf("%s", run_command_s("uptime | awk '{print $5}' | sed 's/,//' | " "sed 's/:/ hours, /' && echo \" mins\"")); }