first commit
This commit is contained in:
commit
e7410994a3
67 changed files with 5154 additions and 0 deletions
11
go-installation/go-install
Executable file
11
go-installation/go-install
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#/bin/bash
|
||||
|
||||
|
||||
# Grabs and downloads Go for Google
|
||||
wget https://golang.org/dl/go1.15.2.linux-amd64.tar.gz
|
||||
|
||||
# Untar's the file just recently downloaded
|
||||
sudo tar -C /usr/local -xzf go1.15.2.linux-amd64.tar.gz
|
||||
|
||||
# Exports the GOPATH
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
Loading…
Add table
Add a link
Reference in a new issue