mirror of
https://github.com/bettercap/bettercap
synced 2025-07-05 20:42:09 -07:00
7 lines
128 B
Go
7 lines
128 B
Go
// +build android
|
|
|
|
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("/system/bin/sh", []string{"-c", cmd})
|
|
}
|