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.
如果我有一个程序,比如说:test.sh,有时需要通过观察屏幕输出进行调试,并在程序到达输出中的某个点时终止程序。对于特别详细的输出,将此输出保存在文件以及终端中会很有用。
test.sh
在代码和调试工具中执行此操作的最佳方法是什么?
输出可以使用以下行进行管道传输:
./test.sh | tee -a Log.log
这将打印到屏幕并将 test.sh 的输出写入 Log.log。