Skip to content

Instantly share code, notes, and snippets.

View mccurdyc's full-sized avatar
📷
Having Fun.

Colton J. McCurdy mccurdyc

📷
Having Fun.
View GitHub Profile
@fatih
fatih / switchgo.sh
Last active December 31, 2019 13:58
Switch between go version using https://github.com/golang/dl
function switchgo() {
version=$1
if [ -z $version ]; then
echo "Usage: switchgo [version]"
return
fi
if ! command -v "go$version" > /dev/null 2>&1; then
echo "version does not exist, download with: "
echo " go get golang.org/dl/go${version}"