この入力ファイルが与えられた場合:
SectionMarker and some random text here
this is the text in section 1
this is the text in section 1
this is the text in section 1
etc
SectionMarker and some random text here also
this is the text in section 2
this is the text in section 2
this is the text in section 2
etc
SectionMarker and some random text too
this is the text in section 3
this is the text in section 3
this is the text in section 3
etc
awk や sed などを使用して、このファイルを分割するにはどうすればよいですか?
これは私が試したものですが、うまくいきませんでした:
awk -vRS='\SectionMarker[:print:]\n' 'NR==1 {print}' ./data.log