Last active
August 29, 2015 14:07
-
-
Save imasif/86cfa8e348f35c0e6302 to your computer and use it in GitHub Desktop.
How to install oh-my-zsh on Elementary OS #oh-my-zsh
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
# Install oh-my-zsh on Elementary OS | |
## We need curl, vim, git & zsh | |
### In Your Terminal: | |
$ sudo apt-get update | |
$ sudo apt-get install -y curl | |
$ sudo apt-get install -y vim | |
$ sudo apt-get install -y git | |
$ sudo apt-get install -y zsh | |
## And after that | |
$ curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | bash | |
$ sudo chsh -s $(which zsh) $(whoami) | |
## Now LogOut and LogIn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check for shellShock:
$ env x='() { :;}; echo vulnerable' bash -c "echo this is a test"