bettercap/core/core_android.go
2019-03-13 02:53:22 +10:00

8 lines
128 B
Go

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