Supongamos que se encuentra en la siguiente situación:
<command 1>
<output of command 1>
<want to use output of command 1 here without have to retype it>
Mi caso concreto:
which eclipse
/usr/bin/eclipse
ldd /usr/bin/eclipe
Pero preferiría no tener que escribir esta última línea, ¿hay algún atajo?
Respuesta1
Usar $()
:
ldd "$(which eclipse)"