gpt4 book ai didi

bash - 从 shell 脚本运行 Golang 脚本

转载 作者:行者123 更新时间:2023-12-03 02:47:37 27 4
gpt4 key购买 nike

每当我登录 OSX 时,我都会尝试运行我的 golang 程序。我正在使用 Automator 尝试以下脚本:

#!/bin/sh
export GOPATH=/Volumes/DTSE9/worker
go run /Volumes/worker/worker.go

每当我使用 Automator 运行此命令时,它都会告诉我go:找不到命令

最佳答案

创建一个类似于 file.go 的文件,其内容应如下所示:

///path-to/bin/go run $0 $@; exit $?

package main

func main() {
println("Hello World!")
}

然后运行chmod +x file.go,然后就可以将其执行为./file.go p1 p2

编辑:这适用于 Ubuntu。我没有看到 OSX 有问题。

关于bash - 从 shell 脚本运行 Golang 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42865472/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com