在Golang中使用exec.Command,如何打开新终端并执行命令?

时间:2019-07-17 15:12:50

标签: macos go terminal

当我直接将其输入到终端中时,我能够获得以下命令来打开新终端并执行该命令,但是当我在go中使用exec.Commmand函数时,却无法使其工作。

osascript -e 'tell application "Terminal" to do script "echo hello"'

我认为问题出在双引号和单引号之内,但我不确定是什么导致了错误。

c := exec.Command("osascript", "-e", "'tell", "application", `"Terminal"`, "to", "do", "script", `"echo`, `hello"'`)
if err := c.Run(); err != nil {
     fmt.Println("Error: ", err)
}

到目前为止,代码正在返回错误:退出状态1,但是我希望代码打开终端窗口并执行命令。

1 个答案:

答案 0 :(得分:0)

玩了一段时间后发现:

cmd := exec.Command("osascript", "-s", "h", "-e",`tell application "Terminal" to do script "echo test"`)

显然,您应该在1个参数中赋予automator脚本,还应使用ticks(`)作为go的字符串文字。

"-s", "h"用于自动程序,告诉您人类可读的错误。

我完整的测试代码如下:

package main

import (
    "fmt"
    "os/exec"
    "io/ioutil"
    "log"
    "os"
 )
// this is a comment

func main() {
    // osascript -e 'tell application "Terminal" to do script "echo hello"'
    cmd := exec.Command(`osascript`, "-s", "h", "-e",`tell application "Terminal" to do script "echo test"`)
    // cmd := exec.Command("sh", "-c", "echo stdout; echo 1>&2 stderr")
    stderr, err := cmd.StderrPipe()
    log.SetOutput(os.Stderr)

    if err != nil {
        log.Fatal(err)
    }

    if err := cmd.Start(); err != nil {
        log.Fatal(err)
    }

    slurp, _ := ioutil.ReadAll(stderr)
    fmt.Printf("%s\n", slurp)

    if err := cmd.Wait(); err != nil {
        log.Fatal(err)
    }
}

PS:osascript是macOS中Automator应用程序的命令行界面。