tail -f a.txt | grep 'python'
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tail -f a.txt | grep 'python'相关的知识,希望对你有一定的参考价值。
# tail -f a.txt |grep ‘python‘ #tail -f a.txt import time def tail(conf): with open(conf,encoding=‘utf-8‘) as f: f.seek(0,2) while True: f1 = f.readline().strip() if f1: yield f1 else: time.sleep(0.5) # t = tail(‘a.txt‘) # print(next(t)) # for line in t: # print(line) # grep ‘python‘ def grep(kewords,lines): for line in lines: if kewords in line: yield line g = grep(‘python‘,tail(‘a.txt‘)) for i in g: print(i)
以上是关于tail -f a.txt | grep 'python'的主要内容,如果未能解决你的问题,请参考以下文章