Hacker News new | ask | show | jobs
by nilkn 4098 days ago
I'd wager that 90% of the time that I'm using 'tail -F' I'm also piping it to grep.
1 comments

This. I use:

tail -f /var/log/x.log | grep foo -A 20 -B 20

Most of the time.

You know you can also do -C 40 for 40 lines of context instead of -A 20 -B 20
Note that -C is in each direction, not total; -C20 is equivalent to -A20 -B20.
Thank you,

This is the reason I always share how I do it in hn! LOL