linux-windows-go打开系统各类应用
日常做了个任务,需要在Go语言中打开windows上的软件,由于网上查询到的并不都是正确的,这里将代码记录下来。
打开应用的命令。
1 | { |
windows
1 | exec.Command("cmd", "/C", "start", "xxxxxxxxxxxxxxx") |
linux/openbsd
1 | exec.Command("xdg-open", "xxxxxxxxxxxxxxx") |
darwin
1 | exec.Command("open", "xxxxxxxxxxxxxxx") |
本文标题:linux-windows-go打开系统各类应用
文章作者:小师
发布时间:2019-11-05
最后更新:2022-05-04
原始链接:chunlife.top/2019/11/05/linux-windows-go打开应用/
版权声明:本站所有文章均采用知识共享署名4.0国际许可协议进行许可