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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…