我正在尝试找到我的 grunt 包的位置,但是当我运行时:
where grunt
我收到以下错误消息:
No command 'where' found, did you mean:
Command 'gwhere' from package 'gwhere' (universe)
where: command not found
正确的命令/语法是什么?
答案1
如果你正在搜索有关grunt
.Run的信息
whereis grunt
或者
whatis grunt
或者
which grunt
答案2
不是,where
但是which
。所以
which grunt
将告诉您二进制文件的位置。
答案3
定位二进制包的命令是which
,定位二进制和手动包的命令是whereis
。因此which ls
将给出
/bin/ls
并whereis ls
会给予
ls: /bin/ls /usr/share/man/man1/ls.1.gz
其中第一个参数/bin/ls
是二进制文件和/usr/share/man/man1/ls.1.gz
手册页。