mac终端运行命令显示-bash: cd: command not found

-bash: cd: command not found.

出现command not found一般有2种原因。

  • 系统中没有这个命令。
  • 命令输入错误。

但是如果我们输入诸如ls cd这些系统自带的命令也提示这个错误,那就是因为系统的环境变量出了问题。
在终端里面输入以下2条命令即可解决问题。

export PATH="/usr/bin:/bin:/usr/sbin:/sbin"
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"

你可能感兴趣的:(mac,mac,bash,command,shell)