Created
August 26, 2016 02:04
-
-
Save alexdovzhanyn/69895c5da977cc6ab1432f818314bb6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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