mirror of
https://github.com/bettercap/bettercap.git
synced 2025-09-06 22:27:49 +00:00
6 lines
102 B
Go
6 lines
102 B
Go
package core
|
|
|
|
func Shell(cmd string) (string, error) {
|
|
return Exec("cmd.exe", []string{"/c", cmd})
|
|
}
|