Revision history of "sed match pattern spanning multiple lines"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 02:06, 17 May 2017Nighthawk (Talk | contribs). . (277 bytes) (+277). . (Created page with "file contents abc def ghi match across 2 lines # cat .abc.txt | sed -n '/abc/N;/def/p' abc def match across 3 lines # cat .abc.txt | sed -n '/abc/N;/def/N;/ghi/p' ...")