Using sed, I would like to extract STRING between the first occurrence of MATCH1 and the next occurrence of MATCH2.
echo "abcd MATCH1 STRING MATCH2 efgh MATCH1 ijk MATCH2 MATCH2 lmnop MATCH1" | sed...
I tried this in various ways, but given that MATCH1 and MATCH2 both may appear several times in a row, it has turned out difficult to extract STRING. Any idea how I can achieve this result?
sedsolution that only needs 3 replacements instead of 4 – SiegeX Dec 9 '10 at 1:33