如何进行多个 Unix 标准输出重定向
如果我要编写文件的标准输出,我会做类似的事情
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看tee命令
Look at the tee command
尝试使用 tee 命令
try use tee command