include uptime
parent
a776984f1b
commit
0c7d8cfc27
9
main.go
9
main.go
|
@ -13,6 +13,8 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
"os/exec"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -84,8 +86,11 @@ func activeUserCount() int {
|
||||||
}
|
}
|
||||||
|
|
||||||
func uptime() string {
|
func uptime() string {
|
||||||
// TODO
|
out, err := exec.Command("uptime").Output()
|
||||||
return "TODO"
|
if err != nil {
|
||||||
|
log.Fatalf("could not run uptime %s", err)
|
||||||
|
}
|
||||||
|
return strings.TrimSpace(string(out))
|
||||||
}
|
}
|
||||||
|
|
||||||
func tdp() TildeData {
|
func tdp() TildeData {
|
||||||
|
|
Loading…
Reference in New Issue