Scripting – tail -f Equivalent

scriptingtail

I am seeing a delay of several seconds with the tail command. I found the cause for it has something to do with nfs services. I am using Arch linux and yet to find out how to disable all these services.

I have searched and had some indication that other tools will not be affected such as cat so what can give equivalent results to tail -f?

Best Answer

Functionally equivalents to tail -f are

less +F

and where available

tailf
Related Question