Advertisement
Guest User

Untitled

a guest
May 29th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #For BSD or GNU grep you can use -B num to set how many lines before the match and -A num for the number of lines after the match.
  2.  
  3. grep -B 3 -A 2 foo README.txt
  4.  
  5. #If you want the same amount of lines before and after you can use -C num.
  6.  
  7. grep -C 3 foo README.txt
  8.  
  9. #This will show 3 lines before and 3 lines after.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement