Hacker News new | comments | show | ask | jobs | submit login Stop using tail -f (mostly) (brianstorti.com) 44 points by Pdincau 49 minutes ago | 18 comments pimlottc 11 minutes ago I was introduced to less +F a while ago and it is quite nice, but there is one simple "feature" of tail -f that I miss quite a lot: being able 'mark' the log with gaps by hitting enter a few times. This is especially handy when you have to first load a page or warm up the app before performing the operation you're interested in watching, letting you separate the earlier output from the lines generated by what you're testing. With less, you have to keep track of the current position by timestamp or other unique message, and it's easy to lose your place when the output starts streaming in. With tail, you only need a moment to mark your spot and then it's visually distinct even as more message come in. ...