core_windows.go 102 B

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