码迷,mamicode.com
首页 > 编程语言 > 详细

tail -f a.txt | grep 'python'

时间:2017-05-27 00:37:19      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:time   python   rip   rds   log   gre   next   adl   conf   

# 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'

标签:time   python   rip   rds   log   gre   next   adl   conf   

原文地址:http://www.cnblogs.com/wangkc/p/6910864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!