我刚刚从macOS Mojave升级到了macOS Catalina(10.15.2)。我在〜/ .bash_profile中使用了别名,并且在Catalina升级后它停止工作。
alias mci='mvn clean install'
alias mcit='mvn clean install -Dmaven.test.skip=true'
alias mcid='mvn clean install -Dmaven.surefire.debug'
我该怎么办?
答案 0 :(得分:2)
您使用哪种外壳? ash? zsh?
您是否更改了您的其他任何内容:
.profile .bash_profile .bashrc
如果您可以在此处添加文件,也许文件的开头有一个“ bug”?
似乎catalina已将默认Shell更改为zsh。所以也许移动你的 .bashrc现在是.zshrc,.bash_profile现在是.zprofile将解决此问题。