with: stdbuf -oL
IF you are working with a file that does not end with an empty line, and you are piping the content from tail -F then prefix tail -F with stdbuf -oL.
Otherwise tail -F is NOT going to output the last line from your file. And you could end up with very confusing tailing missing that last event.
Backlinks