minitor-go/util.go

27 lines
572 B
Go
Raw Normal View History

2019-09-21 22:03:26 +00:00
package main
import (
"os/exec"
"strings"
)
2019-09-21 22:03:26 +00:00
2019-10-02 23:09:11 +00:00
// ShellCommand takes a string and executes it as a command using `sh`
func ShellCommand(command string) *exec.Cmd {
shellCommand := []string{"sh", "-c", strings.TrimSpace(command)}
2019-10-02 16:37:29 +00:00
//log.Printf("Shell command: %v", shellCommand)
return exec.Command(shellCommand[0], shellCommand[1:]...)
}
// EqualSliceString checks if two string slices are equivalent
func EqualSliceString(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i, val := range a {
if val != b[i] {
return false
}
}
return true
}