Skip to content

Instantly share code, notes, and snippets.

@17xande
Last active August 16, 2023 08:55
Show Gist options
  • Save 17xande/ea430cecad13d9b56575dc2ed63f09d6 to your computer and use it in GitHub Desktop.
Save 17xande/ea430cecad13d9b56575dc2ed63f09d6 to your computer and use it in GitHub Desktop.
short script for downloading and installing lastest version of go in a linux amd64 environment
#! /bin/bash
wget "https://go.dev/dl/$(curl 'https://go.dev/VERSION?m=text' | head -n1).linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go*.linux-amd64.tar.gz
rm go*.linux-amd64.tar.gz
go version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment