1 回答
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 应用程序的命令行界面。
- 1 回答
- 0 关注
- 375 浏览
添加回答
举报