I have a file:
header
trigger
text1
text2
trigger
text5
trigger
...
trigger
...
I want sed to only match between the first two occurrences of 'trigger'. So I tried:
sed -n '/trigger/,/trigger/p'
But as the man page for sed says, that matches all occurrences within two lines with 'trigger'. I want sed to quit after the first match, so the output would be:
trigger
text1
text2
trigger
How do I accomplish this?