I am trying to tail file with pagination
tail -f foo.txt | more
This works fine until file gets lets say 200 lines injected, when this happens nature of tail command is to go to end of file, at that point I lose track of trailing the log. Is there a way to avoid this?
lessinstead ofmore. – choroba Nov 2 '12 at 13:29