I have a big log file, and I want to read the relevant part from this log.
Every section start with ###start log###
, so I need to search the last occurrence of ###start log###
, and read the lines until the end of the file.
I see a solution that can search a line by it seek (number), but I don't know it, I know only the content of the line.
What is the best solution for this case?