Skip to content

Instantly share code, notes, and snippets.

@alexdovzhanyn
Created August 26, 2016 02:04
Show Gist options
  • Save alexdovzhanyn/69895c5da977cc6ab1432f818314bb6f to your computer and use it in GitHub Desktop.
Save alexdovzhanyn/69895c5da977cc6ab1432f818314bb6f to your computer and use it in GitHub Desktop.
#!/bin/bash
echo 'Installing Gnome...'
sudo apt-get install gnome-terminal
echo "Done"
echo 'Installing cURL...'
sudo apt-get install curl
echo 'Done'
echo 'Installing RVM Latest Stable...'
\curl -sSL https://get.rvm.io | bash -s stable
echo 'Done'
echo 'Installing Atom Text Editor...'
sudo apt-get install atom
echo 'Done'
echo 'Installing Gems...'
gem install sinatra
echo 'Done'
echo 'Installing Git...'
sudo apt-get install git
echo 'Done'
echo 'Installing Heroku Toolbelt...'
wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
echo 'Done'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment