Skip to content

Instantly share code, notes, and snippets.

@bmatsuo
Last active December 28, 2015 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmatsuo/7446833 to your computer and use it in GitHub Desktop.
Save bmatsuo/7446833 to your computer and use it in GitHub Desktop.
#!/bin/env bash
# usage: bash <(curl https://gist.github.com/bmatsuo/7446833/raw)
sudo apt-get update
sudo apt-get install ssh git curl vim
git clone git@github.com:bmatsuo/home.git
bash -c 'cd home && bash install.sh'
GO_DISTRIBUTION="go1.1.2.linux-amd64.tar.gz"
wget "https://go.googlecode.com/files/$GO_DISTRIBUTION"
sudo tar -C /usr/local -xzf "$GO_DISTRIBUTION"
echo export PATH="/usr/local/go/bin:$PATH" >> ~/.bashrc.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment