command := strings.Split("service nginx reload")
cmd := exec.Command(command[0], command[1:]...)
err := cmd.Run()