Hello I am using this command to find text within files in linux
find ./ -type f -exec grep -l "Text To Find" {} \;
The command works fine, but I would like to print automatically the line that contains the text or if it is possible the firs two lines above the text and the two lines behind the text.
Also another suggestions to find text and print the lines instead of using find are welcome,
Thanks a lot in advance.