com perl
:
perl -l -0777 -ne 'print for /Check: (.*?)Result:/gs' < file
Com o GNU grep
, o (quase) equivalente seria:
grep -zPo '(?s)Check: \K.*?(?=Result:)' < file
Ou com pcregrep
:
pcregrep -Mo1 '(?s)Check: (.*?)Result:' < file
Saída:
Ensure Modality is the same for all images in a DICOM series.
Ensure SeriesDate is in the proper DICOM format (YYYYMMDD) for all images.
[...]