我試圖找到我的 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
是手冊頁。