Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
set -e
set -o pipefail
if [[ ! -e ~/go ]];then
wget -O /tmp/go.tgz https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz
cd ~ && tar xvzf /tmp/go.tgz
fi