I would like to print the lines between two empty lines only after a match is made. My data looks like this:
List A
Item 1
Item 2
Item 3
Item 4
Item 5
List B
Item 1
Item 2
Item 3
Thus, I'm trying to get a sed or awk or grep command to match List A and get the output of
Item 4
Item 5
So far, I have tried doing:
sed '/^$/,/^$/!d'
and
sed '/list\sA.*^$/,/^$/!d'
In this case, I'm trying to print the range and define the first pattern as the string and everything included until the empty line.
I have also tried other code with:
awk -v RS='' -v ORS='\n\n'
But, this only gives me the paragraph that contains the pattern, I'm trying to get the paragraph after that.
Finally, I think it is something using sed -n
and uses the { } with labels but I'm just not advanced enough to put it all together. Would really appreciate if you could point me in the right direction.