I have a file.txt which looks like
dfvdfvdf
lot of stuff I don't care
fdvdegghedc
Run test suite LogicTests
ffdvfvdf
fdvdfvdf
fhtrefg
And I want to get everything from Run test suite LogicTests to the end of the file So I do as follow
resultCroped=$(grep -E 'Run test suite LogicTests[\n.*]' file.txt)
but that doesn't seems to be the good regex
help please thx