‘男人’说:
--all, -a
Print all matching executables in PATH, not just the first.
但当我这样做时,我得到:
> which --all g++
--all: Command not found.
/usr/bin/g++
> which -a g++
-a: Command not found.
/usr/bin/g++
也尝试在“g++”后放置--all或-a,但没有成功。
答案1
您正在使用tcsh
shell,它有一个内置版本的which
。
(注意>
提示和错误信息样式。)
使用/bin/which -a …
或/usr/bin/which -a …
调用 GNU which。