第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

在golang中使用exec.Command,如何打開新終端并執(zhí)行命令?

在golang中使用exec.Command,如何打開新終端并執(zhí)行命令?

Go
慕容森 2023-07-04 16:52:14
當(dāng)我直接在終端中輸入它時(shí),我能夠得到以下命令來打開一個(gè)新終端并執(zhí)行該命令,但是當(dāng)我在 go 中使用 exec.Commmand 函數(shù)時(shí),我無法讓它工作。osascript -e 'tell application "Terminal" to do script "echo hello"'我認(rèn)為問題出在雙引號和單引號內(nèi),但我不確定是什么導(dǎo)致了錯(cuò)誤。c := exec.Command("osascript", "-e", "'tell", "application", `"Terminal"`, "to", "do", "script", `"echo`, `hello"'`)if err := c.Run(); err != nil {     fmt.Println("Error: ", err)}截至目前,代碼返回錯(cuò)誤:退出狀態(tài) 1,但我希望代碼打開終端窗口并執(zhí)行命令。
查看完整描述

1 回答

?
慕尼黑8549860

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超11個(gè)贊

玩了一段時(shí)間發(fā)現(xiàn):


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

顯然,您應(yīng)該在 1 個(gè)參數(shù)中給出自動(dòng)化腳本,并使用刻度線 (`) 作為 go 的字符串文字。


"-s", "h"用于自動(dòng)化程序告訴您人類可讀的錯(cuò)誤。


我的完整測試代碼如下:


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 應(yīng)用程序的命令行界面。


查看完整回答
反對 回復(fù) 2023-07-04
  • 1 回答
  • 0 關(guān)注
  • 513 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號