Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

3 Answers

up vote 2 down vote accepted

sed would be more appropriate for this kind of task:

sed -n '/^Run test suite LogicTests$/,$p' <file>

This will print all the lines from the regular expression match to the end of the file as asked.

share|improve this answer

an awk variant:

awk '/Run test suite LogicTests/{o=1}o' yourFile
share|improve this answer

You can use something like grep -A 1000 'Run test suite LogicTests' which will return you 1000 lines after the string you're seeking for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.