gpt4 book ai didi

bash - 如何下载最新版本的 Go

转载 作者:IT王子 更新时间:2023-10-29 01:26:23 24 4
gpt4 key购买 nike

如何在不知道最新版本的确切版本号的情况下找到Go的最新版本号?这是为了构建下载 url。

当发布在 GitHub 上时,我可以使用例如

curl -s "https://api.github.com/repos/nagios-plugins/nagios-plugins/releases/latest" | jq -r '.assets[] | .browser_download_url')

但由于下载网址不在 GitHub 上,而是在 https://golang.org/dl/ 上我很想知道如何找到最新的 Go 版本号。

最佳答案

从 ml 中得到这个:

# download latest version of Go
VERSION=`curl -L https://golang.org/VERSION?m=text`
wget https://storage.googleapis.com/golang/$VERSION.windows-amd64.msi # windows
wget https://storage.googleapis.com/golang/$VERSION.linux-amd64.tar.gz # linux
# etc.

关于bash - 如何下载最新版本的 Go,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46623153/

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