Today I Learned

hashrocket A Hashrocket project

Changing your default shell

If you decide that the bash shell is old news and maybe zsh is the real deal you can use the chsh command in ubuntu.

chsh dev -s /usr/bin/zsh

Logout and login for the change to take effect and then check your shell var

$ echo $SHELL
/usr/bin/zsh

Fantastic!

See More #command-line TILs