Reputation: 22017
I've read tail -f using PuTTY hangs
But please let me ask again.
A
using putty.B
using ssh.tail -f ...
After some lines tailed terminal stops.
Any ideas?
Upvotes: 1
Views: 596
Reputation: 47062
It is possible (e.g. if you are tailing a log file) that the file is being rotated: that something renames the file and incoming data is then added to a new file with the original name.
If this is what is happening, use tail -F ...
instead of tail -f ...
.
Upvotes: 3