I have a long text file in ascii. Every so often it will have Page: #####
in a line of it. I would like to match starting at "Page: 25141" and every single line after that to the end of the document.
Some of the combos I have tried are:
grep -E ^["Page: 25141".*] document.txt
grep "Page: 25141.*" document.txt
grep "Page: 25141\.\*" document.txt
grep -E "Page: 25141"[.*] document.txt
grep -E "Page: 25141"{.*} document.txt
grep -E {"Page: 25141".*} document.txt
Can't get this to work.