Example:
...
Line
some text
other text
10
...
Is it possible to tell GREP ^Line.*?^10$ so that dot matches also newline and I get this output:
Line
some text
other text
10
If not, is there some Linux CLI tool that can do it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your intend is to output lines between, and including,
Lineand10, I suggest to use awk: