Grep show next or previous line when for matched value

Show next line after matched line

grep -A1 searchpattern filename

Show next 2 lines after matched line

grep -A2 searchpattern filename

Show previous line after matched line

grep -B1 searchpattern filename

Leave a Reply