Estoy intentando encontrar la ubicación de mi paquete ronco, pero cuando ejecuto:
where grunt
Recibo el siguiente mensaje de error:
No command 'where' found, did you mean:
Command 'gwhere' from package 'gwhere' (universe)
where: command not found
¿Cuál es el comando/sintaxis correcto?
Respuesta1
Si está buscando información sobre grunt
.Run
whereis grunt
O
whatis grunt
O
which grunt
Respuesta2
No lo es where
pero which
. Entonces
which grunt
le dirá la ubicación del binario.
Respuesta3
El comando para ubicar el paquete binario es which
y el comando para ubicar los paquetes binario y manual es whereis
. Entonces which ls
daría
/bin/ls
y whereis ls
daría
ls: /bin/ls /usr/share/man/man1/ls.1.gz
donde el primer argumento /bin/ls
es el archivo binario y /usr/share/man/man1/ls.1.gz
es la página del manual.