Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 413 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 413 Bytes

go

ChineseCommandExec

解决go语言在中文windows上面执行命令出现乱码的问题

demo代码

package main

import "github.com/workcha/ChineseCommandExec/command"

func main() {
    result := command.CommonExecute("ipconfig /all")
    println(result)
}

demo