File: core_android.go

package info (click to toggle)
bettercap 2.33.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,668 kB
  • sloc: sh: 154; makefile: 76; python: 52; ansic: 9
file content (7 lines) | stat: -rw-r--r-- 128 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
// +build android

package core

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