Estou tentando encontrar a localização do meu pacote grunhido, mas quando executo:
where grunt
Eu recebi a seguinte mensagem de erro:
No command 'where' found, did you mean:
Command 'gwhere' from package 'gwhere' (universe)
where: command not found
Qual é o comando/sintaxe correto?
Responder1
Se você estiver procurando informações sobre grunt
.Run
whereis grunt
Ou
whatis grunt
Ou
which grunt
Responder2
Não é where
mas which
. Então
which grunt
lhe dirá a localização do binário.
Responder3
O comando para localizar o pacote binário é which
e o comando para localizar os pacotes binários e manuais é whereis
. Então which ls
daria
/bin/ls
e whereis ls
daria
ls: /bin/ls /usr/share/man/man1/ls.1.gz
onde o primeiro argumento /bin/ls
é o arquivo binário e /usr/share/man/man1/ls.1.gz
é a página de manual.