为什么或者为什么我的道路没有受到 MacOSX 的尊重?

发布于 2024-12-11 02:39:40 字数 1820 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁把谁当真 2024-12-18 02:39:40

在 shell 的给定实例中,二进制文件的路径确实被缓存。清除此问题的最简单方法是打开一个新的终端窗口。但您也可以使用内置的 hash shell 在现有窗口中清除它(有关详细信息,请阅读 help hash)。

至于为什么 which 与 shell 关于要执行的二进制文件不一致,这是因为 which 是一个位于 /usr/bin/which 的程序并独立于 shell 解析 PATH。如果您想准确查看 shell 所看到的内容,请使用 type 而不是 which (并使用 type -a 查看所有可能的结果给定的命令)。

Within a given instance of the shell, paths for binaries are indeed cached. The simplest way to clear this is to just open a new terminal window. But you can clear it in an existing window too by using the hash shell built-in (read help hash for details).

As for why which disagrees with the shell about the binary to execute, it's because which is a program that lives at /usr/bin/which and parses the PATH independently of the shell. If you want to see exactly what the shell is seeing, use type instead of which (and use type -a to see all possible results for a given command).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文