Este é um blog onde anoto dicas técnicas de informática e computação.
This is a blog where I write down technical tips on computing.
Be aware that some resources used in this blog may use cookies to collect information used by Ads and Google Analytics. I do not monetize from this website, neither require or use personal information.
Monday, October 5, 2015
Grep lines arround
-B Lines before -A Lines after
$ grep -B 3 -A 2 foo README.txt
The same number of lines before and after you can use -C num. $ grep -C 3 foo README.txt
No comments:
Post a Comment