mirror of
https://github.com/bettercap/bettercap.git
synced 2025-03-12 04:36:03 -07:00
8 lines
131 B
Go
8 lines
131 B
Go
// +build !windows,!android
|
|
|
|
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("/bin/sh", []string{"-c", cmd})
|
|
}
|