Home >Backend Development >PHP Tutorial >I plan to change my Mac to zsh. What should I do if I used bash before?
For example, before .bash_profile
.bashrc
Wait, the contents inside cannot be used even if it is zsh. What needs to be done? Please ask the master of zsh to tell me.
For example, before .bash_profile
.bashrc
Wait, the contents inside cannot be used even if it is zsh. What needs to be done? Please ask the master of zsh to tell me.
zsh is fully compatible with bash. All you have to do is use the source command in ~/.zshrc to execute ~/.bash_profile.
<code>source ~/.bash_profile</code>