unix – 接受stdin的程序,然后写入日期时间标记的文件?

前端之家收集整理的这篇文章主要介绍了unix – 接受stdin的程序,然后写入日期时间标记的文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有一个程序可以做我想要的.这就像流日志轮换程序.对于 linux / unix命令行.

假设我有一些输入正在传输一些数据.我想写一个文件,但每天(或小时或其他)写一个不同的文件,即打开一个具有指定的基于日期时间的模式的文件,并将stdin的内容写入该文件.当日期改变(或小时或分钟,或周等),关闭文件,然后重新打开一个新文件(将有一个新的文件名),然后写入该文件的行?

所以类似于:

my long | process | that's generating | input | datestampfilewriter --daily 'output.%Y-%m-%d.txt'

这个工具存在吗?

你可以使用 cronolog.

cronolog is a simple filter program that reads log file entries from standard input and writes each entry to the output file specified by a filename template and the current date and time. When the expanded filename changes,the current file is closed and a new one opened.

原文链接:https://www.f2er.com/bash/385371.html

猜你在找的Bash相关文章