为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Go
慕容森 2023-07-04 16:52:14
当我直接在终端中输入它时,我能够得到以下命令来打开一个新终端并执行该命令,但是当我在 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 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

玩了一段时间发现:


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

显然,您应该在 1 个参数中给出自动化脚本,并使用刻度线 (`) 作为 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 应用程序的命令行界面。


查看完整回答
反对 回复 2023-07-04
  • 1 回答
  • 0 关注
  • 375 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信