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