解决mac系统命令行提示 command not found问题

-bash: ls: command not found


-bash: chown:command not found


解决方法:
vim ~/.bash_profile
打开该文件

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
export PATH
在文件末尾添加上面path环境变量配置

:wq 保存并退出文件

source ~/.bash_profile
在终端执行上面命令,是配置生效

你可能感兴趣的:(解决mac系统命令行提示 command not found问题)