mirror of
https://github.com/bettercap/bettercap.git
synced 2025-09-06 22:27:49 +00:00
8 lines
128 B
Go
8 lines
128 B
Go
// +build android
|
|
|
|
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("/system/bin/sh", []string{"-c", cmd})
|
|
}
|