2
我想爲我的輸入文件中的所有行編號,除此之外,它與我的正則表達式匹配。例如:如何在異常情況下編號行(bash或sed)
輸入文件:
some text 12345
some another text qwerty
my special line
blah foo bar
正則表達式:^我
輸出:
1 some text 12345
2 some another text qwerty
my special line
3 blah foo bar
或者更短的:'!/^my/{$ 0 = ++ cnt「」$ 0} 1'' – Thor
沒想過修改'$ 0',在這種情況下確實很好。如果有點神祕,孤立的'1'是一個有趣的捷徑。 – Mat