grep 'STRING' filename
searches the file for STRING and lists the lines that contain a match. How can I also list two lines that follow the match?
grep 'STRING' filename
searches the file for STRING and lists the lines that contain a match. How can I also list two lines that follow the match?
lists the matching lines and two lines that follow the match.