summaryrefslogtreecommitdiff
path: root/src/uptime.c
blob: 56ea6b77595b046e9d2e3216a43ca244dceb7219 (plain)
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\""));
}