Search for a pattern with context before and after (grep)
grep -i -B 3 -A 5 'something something'
Finds 'something something' and shows 3 lines before and 5 lines after each match, case-insensitively.
grep -i -B 3 -A 5 'something something'
Finds 'something something' and shows 3 lines before and 5 lines after each match, case-insensitively.