标签: 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())
答案 0 :(得分:1)
这是关于blog post“大纲grep”的literal Haskell implementation。