The manual for GNU tail
says
-s
,--sleep-interval=N
with
-f
, sleep for approximatelyN
seconds (default1.0
) between iterations; withinotify
and--pid=P
, check processP
at least once everyN
seconds
But when I write tail --sleep-interval=10 -F file_name
it does not sleep for 10 seconds, it updates it right away. Am I understanding it wrong, or using it wrong?
Thanks for helping