{"title": "\u5b9e\u73b0Python\u7248\u7684tail -f\u529f\u80fd", "update_time": "2013-04-20 13:59:24", "tags": "tail python", "pid": "226", "icon": "python.png"}
tail -f 的功能非常好用。我们用Python也可以实现这样的功能。 实现的原理是通过Python版本的inotify获得文件的更新消息,从而读取更新的行。 安装pyinotify ``` pip install pyinotify ``` 下面是我写的一个简单的tail -f文件的实现。 ``` import pyinotify import time import os class ProcessTransientFile(pyinotify.ProcessEvent): def process_IN_MODIFY(self, event): line = file.readline() if line: print line, # already has newline filename = '/tmp/test1234' file = open(filename,'r') #Find the size of the file and move to the end st_results = os.stat(filename) st_size = st_results[6] file.seek(st_size) wm = pyinotify.WatchManager() notifier = pyinotify.Notifier(wm) wm.watch_transient_file(filename, pyinotify.IN_MODIFY, ProcessTransientFile) notifier.loop() ``` tail的文件为/tmp/test1234,通过向/tmp/test1234写入内容,可以看到python脚本可以动态显示更新的内容。 这个小脚本只是抛砖引玉。通过监听文件,尤其是日志文件可以实现很多诸如报警、自动控制等功能。