Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • 1
    worked! So, I can use $ tail -F filename command all the time instead of $ tail -f filename right? Commented Aug 15, 2011 at 2:18
  • 20
    If that's your intended behavior. There may be cases where you want to follow by descriptor instead of filename, but to be fair I haven't come across many of those. Commented Aug 15, 2011 at 2:18
  • 1
    lsof can show this happening - for example lsof -Fpcftni would show that the inode being followed by tail is no longer the same one that the editor has open. Commented Aug 15, 2011 at 8:58