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'的主要内容,如果未能解决你的问题,请参考以下文章

unix 将小数四舍五入小数点后两位

Linux中有啥方法可以静态取出top命令中关于CPU运行状态的那行?

着色尾部输出

linux如何查看文件有多少行

linux下日志文件的查找(tail和grep)

linux find grep tail