How do continuously monitor a file that is being continuously overwritten? Specifically, the file contains a single line of text which a background process is repeatedly opening and re-writing.
I was hoping tail -F
would work, but it doesn't.
Update: I was hoping this wouldn't be pertinent, but I'm running Mac OS X 10.5.8.
You can use watch to repeat a command execution, so in your case
There are better ways to do this, but it'll work
The file.log file will grow...rapidly...
If you need more features, like to check to see if the contents of the file are equal to the previous contents, you can expand this out into a script. Just comment below and I'll help.
On BSD systems (and I believe most other systems)
tail -f
will reset to the beginning of the file if it sees that the file has been truncated (this sounds like exactly the behavior you want).On Linux systems the same thing happens, but at least on the Debian box I have laying around tail has a "polling interval", so you need to tell it not to sleep between checks of the file (
tail -s 0 -f ...
) for it to notice the truncation, otherwise strange things happen (if the file is the same size or smaller when it's written out you get no output, if it's bigger you get everything after tail's current byte-count marker, etc. -- Play with your tail impementation to see how it behaves)As an alternative on both Linux and BSD systems tail has a
-F
option (which is like-f
but checks to see if the file has been rotated -- i.e. the name points to a different inode number). This won't help you if the file is being truncated as opposed to unlink'd and replaced though.Poor man's
watch
:Change the
cat
if the file is longer than a screenful to something like:You could add conditionals to check for a change in the file's timestamp, etc.
You could use the FSEvents API and a small script to monitor the file (or more precisely the directory which contains the file).