我想编写一个Go程序来打开一个Chrome窗口,并将URL作为参数传递给它。
所以我写了这样的东西。
package main
import "os"
import "os/exec"
import "strings"
func main() {
args := "--app=" + strings.Join(os.Args\[1:\], "")
exec.Command("\\"C:\\\\Program Files (x86)\\\\Google\\\\Chrome Dev\\\\Application\\\\chrome.exe\\"", args).Start()
}
但是当我运行程序go run ".\abc.go" "https://google.com"
时,什么也没发生。
我也尝试过exec.Command("cmd", "\\C", "start", "\"C:\\Program Files (x86)\\Google\\Chrome Dev\\Application\\chrome.exe\"", args).Start()
,但是没有运气。
答案 0 :(得分:1)
在Windows上可以做到的
err := exec.Command("cmd", "/C", "start", "chrome.exe").Run()
if err != nil {
log.Println(err)
}