Updated the zsh version which is latest as of 28-Feb-2020

Jay Khimani 2020-02-28 22:19:52 +01:00
parent 1223c6ff2b
commit d4d7f5e4f5
1 changed files with 3 additions and 3 deletions

@ -6,7 +6,7 @@ Oh-My-Zsh is a framework for [Zsh](http://www.zsh.org), the Z shell.
- In order for Oh-My-Zsh to work, Zsh must be installed. - In order for Oh-My-Zsh to work, Zsh must be installed.
- Please run `zsh --version` to confirm. - Please run `zsh --version` to confirm.
- Expected result: `zsh 5.1.1` or more recent - Expected result: `zsh 5.4.2` or more recent
- Additionally, Zsh should be set as your default shell. - Additionally, Zsh should be set as your default shell.
- Please run `echo $SHELL` from a new terminal to confirm. - Please run `echo $SHELL` from a new terminal to confirm.
- Expected result: `/usr/bin/zsh` or similar - Expected result: `/usr/bin/zsh` or similar
@ -19,13 +19,13 @@ If necessary, follow these steps to install Zsh:
- with the package manager of your choice, _e.g._ `sudo apt install zsh` (see [below for more examples](#how-to-install-zsh-in-many-platforms)) - with the package manager of your choice, _e.g._ `sudo apt install zsh` (see [below for more examples](#how-to-install-zsh-in-many-platforms))
- from [source](http://zsh.sourceforge.net/Arc/source.html), following - from [source](http://zsh.sourceforge.net/Arc/source.html), following
[instructions from the Zsh FAQ](http://zsh.sourceforge.net/FAQ/zshfaq01.html#l7) [instructions from the Zsh FAQ](http://zsh.sourceforge.net/FAQ/zshfaq01.html#l7)
2. Verify installation by running `zsh --version`. Expected result: `zsh 5.1.1` or more recent. 2. Verify installation by running `zsh --version`. Expected result: `zsh 5.4.2` or more recent.
3. Make it your default shell: `chsh -s $(which zsh)` 3. Make it your default shell: `chsh -s $(which zsh)`
- Note that this will not work if Zsh is not in your authorized shells list (`/etc/shells`) - Note that this will not work if Zsh is not in your authorized shells list (`/etc/shells`)
or if you don't have permission to use `chsh`. If that's the case [you'll need to use a different procedure](https://www.google.com/search?q=zsh+default+without+chsh). or if you don't have permission to use `chsh`. If that's the case [you'll need to use a different procedure](https://www.google.com/search?q=zsh+default+without+chsh).
4. Log out and login back again to use your new default shell. 4. Log out and login back again to use your new default shell.
5. Test that it worked with `echo $SHELL`. Expected result: `/bin/zsh` or similar. 5. Test that it worked with `echo $SHELL`. Expected result: `/bin/zsh` or similar.
6. Test with `$SHELL --version`. Expected result: 'zsh 5.1.1' or similar 6. Test with `$SHELL --version`. Expected result: 'zsh 5.4.2' or similar
## How to install zsh on many platforms ## How to install zsh on many platforms