假设您处于以下情况:
<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)"
假设您处于以下情况:
<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
但我不想输入最后一行,有没有什么快捷方式?
使用$()
:
ldd "$(which eclipse)"