如何使用exec.Command()打开Chrome窗口?

时间:2019-05-23 05:30:56

标签: go

我想编写一个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(),但是没有运气。

1 个答案:

答案 0 :(得分:1)

在Windows上可以做到的

err := exec.Command("cmd", "/C", "start", "chrome.exe").Run()
if err != nil {
    log.Println(err)
}