diff --git a/main.go b/main.go index 7592cdb..eb1588a 100644 --- a/main.go +++ b/main.go @@ -31,7 +31,7 @@ func main() { }) } // Get the number of users online - out, err := exec.Command("/usr/bin/users | /usr/bin/wc -l").Output() + out, err := exec.Command("bash", "-c", "/usr/bin/users | /usr/bin/wc -l").Output() if err != nil { log.Error(err) return c.SendStatus(fiber.StatusInternalServerError)