Last active
August 29, 2015 14:22
-
-
Save hawkup/2130b0432bb2c03c302a to your computer and use it in GitHub Desktop.
shell script install environment
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 | |
sudo apt-get update | |
sudo apt-get install git | |
wget -qO- https://get.docker.com/ | sh | |
sudo apt-get install nodejs | |
sudo apt-get install npm | |
sudo ln -s /usr/bin/nodejs /usr/bin/node | |
# optinal | |
# sudo apt-get install vim | |
# sudo apt-get install git-gui gitk | |
# sudo apt-get install ruby-dev | |
# sudo npm install -g gulp | |
# sudo npm install -g bower |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment