Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日志文件,只能附加到。我想将此日志文件通过管道传输到控制台,以便一旦有新数据进入日志文件,控制台也会反映新数据。当没有要附加的数据时,控制台应该阻塞在那里等待更新。
它就像一个代理服务器,将文件更新重定向到控制台。
如何使用 bash 实现这一点?
谢谢你。
使用尾巴:
tail -f logfile
-f表示遵循这正是您所需要的。
-f
此外,如果您遇到文件无法访问的问题,请尝试使用-F
-F
tail命令应该适合你。
tail -f <log file>