是否可以将早期尾部日志的输出保存到文件中?
重现此问题的步骤:
tail -f application.log
- Ctrl+C结束日志
- 现在将该输出保存到文件中。
我假设存在这样的算法。
tail -f application.log | cat >> EOF > /tmp/greppedTMP
是否可以将早期尾部日志的输出保存到文件中?
重现此问题的步骤:
tail -f application.log
我假设存在这样的算法。
tail -f application.log | cat >> EOF > /tmp/greppedTMP