bettercap/core/core_windows.go

6 lines
102 B
Go

package core
func Shell(cmd string) (string, error) {
return Exec("cmd.exe", []string{"/c", cmd})
}