zsh

zsh

March 18, 2023
zsh, brew, Mac, macOS

zsh # Terminal # Set zsh as a default shell # Check the default shell $ echo $SHELL /bin/bash Check a list of available shells $ cat /etc/shells /bin/bash /bin/csh /bin/ksh /bin/sh /bin/tcsh /bin/zsh Change the default shell from bash to zsh $ chsh -s /bin/zsh Copy configurations $ cat ~/.bashrc >> ~/.zshrc $ cat ~/.bash_profile >> ~/.zshrc Please rewrite the configuration for bash to the one for zsh ...