Para expandir: La opción -a informa TODAS las coincidencias en su RUTA. Para eso es. Si, como se señaló, su $ PATH hace referencia al mismo lugar más de una vez, o el mismo ejecutable está en más de un lugar, aparecerá varias veces con -a (pero no al omitir esa opción).
SuperMagic
2
Como dice la sugerencia, y citando la página del manual, "Which takes one or more arguments. For each of its arguments it prints to stdout the full path of the executables that would have been executed when this argument
had been entered at the shell prompt. It does this by searching for an executable or script in the directories listed in the environment variable PATH using the same
algorithm as bash(1)."En cuanto a la -aopción, enumera todos los ejecutables con ese nombre que se encuentra en $ PATH.
Respuestas:
Comprueba tu camino. No es tan difícil terminar con duplicados. Ejemplo:
Esto se debe a que mi / bin es un enlace simbólico a / usr / bin. Ahora:
Como / usr / bin ahora está en mi $ PATH dos veces,
which -a
encuentra el mismo bash dos veces.fuente
Como dice la sugerencia, y citando la página del manual,
"Which takes one or more arguments. For each of its arguments it prints to stdout the full path of the executables that would have been executed when this argument had been entered at the shell prompt. It does this by searching for an executable or script in the directories listed in the environment variable PATH using the same algorithm as bash(1)."
En cuanto a la-a
opción, enumera todos los ejecutables con ese nombre que se encuentra en $ PATH.fuente
Echa un vistazo a tu camino:
Hay entradas duplicadas en su ruta (o ruby se instala varias veces en diferentes ubicaciones).
fuente
Tratar
whereis -b ruby
Si está obteniendo el mismo resultado, entonces el problema está en su RUTA.
fuente