It's probably output buffering from grep. you can disable that with `grep --line-buffered`.
But you don't need to pipe output from grep into awk. awk can do regexp pattern matching all by itself.
`tail -f test.txt | awk '/Beam/ {print $3}'`
It's probably output buffering from grep. you can disable that with `grep --line-buffered`.
But you don't need to pipe output from grep into awk. awk can do regexp pattern matching all by itself.
`tail -f test.txt | awk '/Beam/ {print $3}'`