bettercap/core/core_unix.go
2019-03-13 02:48:20 +10:00

8 lines
131 B
Go

// +build !windows,!android
package core
func Shell(cmd string) (string, error) {
return Exec("/bin/sh", []string{"-c", cmd})
}