gpt4 book ai didi

bash - 在 Bash 中重用上一个命令的输出

转载 作者:行者123 更新时间:2023-11-29 08:38:16 27 4
gpt4 key购买 nike

Bash 命令的输出是否存储在任何寄存器中?例如。类似于 $? 捕获输出而不是退出状态。

我可以将输出分配给一个变量:

output=$(command)

但这更多的是打字......

最佳答案

你可以使用$(!!)重新计算(不是重新使用)上一条命令的输出。

!! 自己执行最后一条命令。

$ echo pierre
pierre
$ echo my name is $(!!)
echo my name is $(echo pierre)
my name is pierre

关于bash - 在 Bash 中重用上一个命令的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24283097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com