有一句CMD命令: mode con cols=300 lines=500
应该怎么写才能正确的执行呢?
```go
d := exec.Command("mode con cols=300 lines=500")
e:=d.Start()
```
这样写为什么执行不了?
d := exec.Command("mode", "con", "cols=300", "lines=500")
e:=d.Start()
#7
更多评论