Skip to content

Instantly share code, notes, and snippets.

@bmatsuo
Last active December 28, 2015 04:59
Show Gist options
  • 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 [email protected]: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