Answers for "grep line after match"

1

grep show lines above and below

grep -C 3 foo README.txt
Posted by: Guest on June-28-2020
0

grep line after match

Include -A flag to add lines after match and -B flag to add lines before
grep match -A 3	#display match line and 3 after lines
grep match -B 2 #display match line and 2 lines before
Posted by: Guest on November-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language