Is there a `tail -f` equivalent for when a file is overwritten (instead of appended to)?
Solution 1:
You can use watch to repeat a command execution, so in your case
watch -n 1 cat filename
Solution 2:
There are better ways to do this, but it'll work
while true ; do echo -n "`date +%s:` " >> file.log ; cat file >> file.log ; done
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.
Solution 3:
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.
Solution 4:
Poor man's watch
:
while true
do
clear
cat file
sleep 1
done
Change the cat
if the file is longer than a screenful to something like:
tail -n $((LINES - 4)) file
You could add conditionals to check for a change in the file's timestamp, etc.