bettercap/core/core_unix.go
evilsocket 42fc639c10 balls
2018-02-07 15:40:58 +01:00

7 lines
122 B
Go

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