是否有基于缩进显示上下文的 grep 工具?对于每场比赛,我希望看到所有最近缩进级别较低的行,但跳过其间具有相同缩进级别的所有行。例子:
$ contextgrep rstrip pep8.py
class Checker(object):
def check_logical(self):
if self.verbose >= 2:
print(self.logical_line[:80].rstrip())
是否有基于缩进显示上下文的 grep 工具?对于每场比赛,我希望看到所有最近缩进级别较低的行,但跳过其间具有相同缩进级别的所有行。例子:
$ contextgrep rstrip pep8.py
class Checker(object):
def check_logical(self):
if self.verbose >= 2:
print(self.logical_line[:80].rstrip())