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.
有谁碰巧知道如何将终端中的 STDOUT 定向到缓存?有时我想从其他地方的 STDOUT 复制文本,例如我的邮件程序,手动复制输出或创建一个新的临时文件对我来说似乎总是有点不方便。
是否有捷径可寻?
非常感谢!
亚历克斯
目前还不清楚你在问什么。但是,如果您正在谈论将标准输出捕获到文件,同时仍然能够在控制台上看到它,那么您可以使用tee(假设您使用的是 *nix):
tee
./myApp | tee stdout.txt