cat 文件名.* >达泰
我正在寻找将 unix-command 转换
$ cat filename.* > Datei
为 Python 程序。有人可以帮忙吗?
I'm looking to translate the unix-command
$ cat filename.* > Datei
into a Python program. Can somebody help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
像这样的事情应该可以帮助您开始:
更新:当然,也需要打开输入文件。
更新:明确使用二进制模式。
Something like this should get you started:
UPDATE: Of course, input files need to be opened, too.
UPDATE: Explicitly use binary mode.
或者
alternatively
感谢您的帮助。
我现在的脚本:
应用程序每天创建一个日志文件,如“olat.log.07-12-2009”
我的想法是将一只飞蛾的所有日志收集到一个日志文件中并分析这个日志文件。
Thank you for your help.
My script now:
An application create everyday a logfile like "olat.log.07-12-2009"
My idea was to cat all the logs from one moth into one logfile and analyze this one.