如何进行多个 Unix 标准输出重定向

发布于 2024-11-19 07:04:37 字数 167 浏览 2 评论 0原文

如果我要编写文件的标准输出,我会做类似的事情

python abcd.py > abcd.log

,但是如果我这样做,我将无法看到 abcd.py 的输出,我将如何更改上面的命令,以便我都可以看到输出abcd.py 并将输出写入 abcd.log

If i were to write the standard output of a file i would do something like

python abcd.py > abcd.log

But if I do that i wouldn't be able to see the output of abcd.py, How would i change the above command so i can both see the ouput of abcd.py and also write the output to abcd.log

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狼性发作 2024-11-26 07:04:37

看tee命令

python abcd.py | tee abcd.log

Look at the tee command

python abcd.py | tee abcd.log
将军与妓 2024-11-26 07:04:37

尝试使用 tee 命令

 python abcd.py | tee abcd.log

try use tee command

 python abcd.py | tee abcd.log
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文