一、问题描述
把ubutnu默认的BASH替换成了Zsh,然后用tree显示一下目录结构就提示zsh: command not found:tree
二、解决方法
1、vi .bash_profile
增加内容:
export PATH=/bin:/usr/bin:/usr/local/bin:$PATH
2、source .bash_profile
在.zshrc中添加一行:
source ~/.bash_profile
之后就可以使用了。