Using sed, how do I return the last occurance of a match until the End Of File? (FYI this has been simplified)
So far I\'ve tried:
sed -n \'/ Statist
This might also work, slightly more simple version of the sed solution given by the others above:
sed -n 'H; /^Statistics |/h; ${g;p;}' logfile.log
Output:
Statistics | Stuff Error: error type one Error: error type two