My understanding is that tail -F should reprint the entire contents of a file from the beginning when the file is recreated. The current behavior does not appear to do this:
Terminal 1
$ tail -F testfile.txt
abc
ghi
Terminal 2
$ echo abc > testfile.txt
$ echo def > testfile.txt
$ echo ghi >> testfile.txt
Expected terminal 1
$ tail -F testfile.txt
abc
def
ghi
I am not sure whether this is an issue with this project or with an upstream component. Additionally, I am running Chimera Linux from within a Podman container on Fedora 42 Silverblue.
My understanding is that
tail -Fshould reprint the entire contents of a file from the beginning when the file is recreated. The current behavior does not appear to do this:Terminal 1
Terminal 2
Expected terminal 1
I am not sure whether this is an issue with this project or with an upstream component. Additionally, I am running Chimera Linux from within a Podman container on Fedora 42 Silverblue.