How can I use a custom shell like csh, ksh or zsh?

By default, we use the bash shell for logins. However, we also have csh/tcsh, ksh, and zsh available.

You can use csh/tcsh, ksh or zsh by simply typing csh, ksh, or zsh after logging in.

If you want to make this a permanent change, you can add one of these lines to your ~/.bash_profile file:

SHELL=/bin/csh exec /bin/csh

SHELL=/bin/ksh exec /bin/ksh

SHELL=/bin/zsh exec /bin/zsh