Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何附加| tee ~/.output到每个 bash 命令?
| tee ~/.output
我想输出最后一个命令的结果,以便可以在 $variable 中使用它们。
我想为每个 bash 命令附加一个字符串,你可以通过重新绑定你的enter键来添加命令字符串来做到这一点。或者,如果您更喜欢创建辅助回车键并使用它。
enter
你应该这样做:
bind 'RETURN: " | tee ~/.output \n"'
这样,每次按enterget| tee ~/.output附加。
这是bash唯一的解决方案。
bash