grep与基于缩进的上下文

时间:2012-06-26 02:48:55

标签: grep indentation utility

是否有基于缩进显示上下文的grep工具?对于每个匹配,我希望看到所有最近的行具有较低的缩进级别,但跳过其间的相同缩进级别的所有行。例如:

$ contextgrep rstrip pep8.py
class Checker(object):
    def check_logical(self):
        if self.verbose >= 2:
            print(self.logical_line[:80].rstrip())

1 个答案:

答案 0 :(得分:1)

这是关于blog post“大纲grep”的literal Haskell implementation