This file contains hidden or 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
| # update-alternative (install) ## ubuntu 14.04 vm install using ruby2.0* set of packages | |
| sudo update-alternatives --install /usr/bin/ruby ruby2.0 /usr/bin/ruby2.0 9 | |
| sudo update-alternatives --install /usr/bin/erb erb2.0 /usr/bin/erb2.0 9 | |
| sudo update-alternatives --install /usr/bin/gem gem2.0 /usr/bin/gem2.0 9 | |
| sudo update-alternatives --install /usr/bin/irb irb2.0 /usr/bin/irb2.0 9 | |
| sudo update-alternatives --install /usr/bin/rake rake2.0 /usr/bin/rake2.0 9 | |
| sudo update-alternatives --install /usr/bin/rdoc rdoc2.0 /usr/bin/rdoc2.0 9 | |
| sudo update-alternatives --install /usr/bin/ri ri2.0 /usr/bin/ri2.0 9 | |
| sudo update-alternatives --install /usr/bin/testrb testrb2.0 /usr/bin/testrb2.0 9 |
This file contains hidden or 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/sh | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' |
OlderNewer