mirror of
https://github.com/bettercap/bettercap
synced 2025-07-06 13:02:12 -07:00
7 lines
122 B
Go
7 lines
122 B
Go
// +build !windows
|
|
|
|
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("/bin/sh", []string{"-c", cmd})
|
|
}
|