终端上的$ PATH错误


0

在举起干草叉之前,这不是另一个“如何更改$ PATH变量值?” 题。我已经在我的机器(Macbook Pro)上安装了我的zsh,但是不喜欢它。所以我卸载了它。

自安装以来,运行$ PATH命令时,我得到以下信息:

Anups-xxxx-xxx% $PATH
zsh: no such file or directory: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin

我如何摆脱那些说的话zsh: no such file or directory。提前致谢!


2
err,没有$ PATH命令。如果要查看PATH,则必须运行echo $PATH
nohillside

Answers:


2

好的,您已经对$ PATH及其用法有了很好的了解,但是您误以为它是命令。在Bash(和其他shell)中,以美元符号开头的单词是变量。您可以使用export命令更改$ PATH的值(您可能已经知道)。

export PATH=$PATH:/path/to/something/you/need/bin

因此,在您的Shell中,只需键入即可$PATH,基本上是在告诉外壳程序运行/usr/bin/:/bin/:/usr/local/bin:/etc//etc//etc/不是有效Shell命令的命令。

@patrix是正确的,您应该使用它echo来检查$ PATH。我怀疑“ zsh:没有这样的文件或目录”只是您的shell告诉您您的命令没有意义。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.