mirror of
https://github.com/bettercap/bettercap
synced 2025-07-06 21:12:05 -07:00
5 lines
102 B
Go
5 lines
102 B
Go
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("/bin/sh", []string{"-c", cmd})
|
|
}
|