我试图从Bash移动到zsh。
我把我的.bashrc直接到我的.zshrc,它导致了很多错误,当我尝试使用Bash再次。
如何将.bashrc导出到.zshrc?
虽然lhunath的回答推动我在正确的方向,zsh似乎不自动源.profile。很多关于这个话题的好信息可以在
this superuser post找到。
原文链接:https://www.f2er.com/bash/390036.html我使用的适应是将通用别名和函数放在.profile中,并手动采用它们如下:
.bashrc
源〜/ .profile
.zshrc
[[-e〜/ .profile]]&& emulate sh -c’source〜/ .profile’