管道python将stdout流输出到grep

时间:2015-10-30 14:40:58

标签: python linux pipe stdout

我知道这一段时间的原因,但我已经忘记了,5分钟的谷歌搜索没有透露答案。

我编写了一个包含两个处理程序的python脚本。一个用于文件,一个用于流。

一切都按我的意愿运作。

现在,我想快速找到输出到打印到终端的内容,但通过grep管理脚本的输出似乎没有工作,所有的输出仍然得到& #39;打印到终端。

我正在使用unix和python 2.7

这可能是一个重复的问题,但我无法找到答案。

这是我的日志模块设置:

def setup_logger(verbosity):
    #logger = logging.getLogger(regress.app_name)
    logger = logging.getLogger('components')
    logger.setLevel(logging.DEBUG)
    # create file handler which logs even debug messages
    fh = logging.FileHandler(Config.logging_file_name, mode='w')
    fh.setLevel(logging.DEBUG)
    # create console handler with a higher log level
    ch = logging.StreamHandler()
    ch.setLevel({True:logging.DEBUG, False:logging.INFO}[verbosity])
    # create formatter and add it to the handlers
    file_formatter = logging.Formatter('%(asctime)s - %(pathname)s - %(funcName)s - %(name)s - %(levelname)s - %(lineno)s - %(message)s')

    console_formatter = logging.Formatter('%(filename)s - %(lineno)s - %(levelname)s - %(message)s')
    fh.setFormatter(file_formatter)
    ch.setFormatter(console_formatter)
    # add the handlers to the logger
    logger.addHandler(fh)
    logger.addHandler(ch)

    #logging.abort = abort
    #logging.abort("testing...")
    #logger.info("does this happen?")

    #logging.func = func
    #logging.func()
    #logger.func()

我对脚本的调用如下所示:

<script_name> <script args> | grep -i <search_string>

1 个答案:

答案 0 :(得分:2)

正如@Blender在原始问题下方的评论中提到的那样,您只需要重定向stderr。您可以通过在管道之前添加2>&1重定向来做到这一点。因此,例如

python main.py 2>&1 | grep INFO

将过滤INFO记录的任何main.py行。