Is that possible to use grep on a continuous stream?
grep
What I mean is sort of a tail -f command, but with grep on t
tail -f
I use the tail -f | grep all the time.
tail -f | grep
It will wait till grep flushes, not till it finishes (I'm using Ubuntu).