Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我安装了几个实用程序来向我的 Windows shell 提供 Unix 命令,以便我可以使用lsandgrep和其他工具。我多次更改系统路径,我不知道调用命令时调用的是哪个版本。所以当我这样做的时候
ls
grep
ls *.txt
我不记得ls正在调用哪个版本。我如何在不遍历路径中的每个条目的情况下找出正在调用的对象?
原来这在这里已经有了答案,但作为参考,该命令where可以满足我的需要。
where
where ls
将打印到可以在我的路径上找到可执行文件 ls.exe 的标准输出。