doudouchan5830 2019-07-17 15:12
浏览 2278
已采纳

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

I am able to get the following command to open a new terminal and execute the command when I directly input it inside a terminal, but I can not get it to work when I use the exec.Commmand function in go.

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

I think the issue lies within the double and single quotes, but I am not exactly sure what is causing the error.

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

As of now the code is returning Error: exit status 1, but I would like the code to open a terminal window and execute the command.

  • 写回答

1条回答 默认 最新

  • douya8978 2019-07-17 16:18
    关注

    After playing some time found this:

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

    Apparently you should give the automator script in 1 argument and also use ticks (`) as the string literals for go.

    "-s", "h" is for automator program to tell you human readable errors.

    My complete test code is as follows:

    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
    ", slurp)
    
        if err := cmd.Wait(); err != nil {
            log.Fatal(err)
        }
    }
    
    

    PS: osascript is the command line interface for Automator app in macOS.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型