gpt4 book ai didi

file - unix 将尾部重定向到文件

转载 作者:行者123 更新时间:2023-12-04 16:11:59 25 4
gpt4 key购买 nike

我 24/7 小时将来自 nc 输出的数据存储在文件中。它是一个温度数据记录器。
此文件 amroutput时间长了会很大。 (每 10 秒一行)。
对于一个应用程序,我将拥有文件中的最后一个条目 amr_last_output .
所以我使用:

 tail -f -n1 amroutput > amr_lastoutput.

>我会覆盖文件 amr_lastoutput每次 tal 进行输出时。
在 mac osx 上,我们将 tail 的输出附加到输出文件中,如 >>命令。
我能做什么?

感谢您的回答!

最佳答案

我正在等待您对我之前评论的确认。但与此同时,我将假设是肯定的,并为您提供建议的解决方案。

放置一个!在 > 或 >> 重定向的末尾将关闭防止覆盖现有文件的默认“noclobber”开关:

tail -f -n1 amroutput >! amr_lastoutput

如果这对您不起作用,请告诉我,我们可以尝试其他方法。

关于file - unix 将尾部重定向到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11648752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com