3
是否有一個基於縮進顯示上下文的grep工具?對於每場比賽,我希望看到所有最近的縮進級別較低的線,但跳過所有縮進級別相同的縮進線。例如:grep with indentation-based context
$ contextgrep rstrip pep8.py
class Checker(object):
def check_logical(self):
if self.verbose >= 2:
print(self.logical_line[:80].rstrip())
去寫一個,就像你在代碼塊中說明的那樣,^ _ ^ – zinking