参考上一个命令的输出

参考上一个命令的输出

假设您处于以下情况:

<command 1>
<output of command 1>
<want to use output of command 1 here without have to retype it>

我的具体情况:

which eclipse
/usr/bin/eclipse
ldd /usr/bin/eclipe

但我不想输入最后一行,有没有什么快捷方式?

答案1

使用$()

ldd "$(which eclipse)"

相关内容