Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
abcde Begin xyzpqrs END fghijk Begin fooooo barrrr END 123
Code:BEGIN { s="^Begin$" e="^END$" } { fl=0 out="" for(i=1; i <= NF; i++) { if( $i ~ s) { fl++; continue} if( $i ~ e && fl) { print out; fl=0; out=""; continue} if (fl) { out = ((fl==1) ? "" : (out OFS) ) $i; fl++ } } }
vlad
+----------------------------+
| #include<disclaimer.h> |
+----------------------------+
sed -n 's/.*Begin\(.*\)END.*/\1/g' infile