Tagged Questions
1
vote
3answers
273 views
clear screen when the file is truncated while using `tail -f`
I'm using tail -f to print the content of a continuously changing file. When the file is truncated it shows up like this:
blah (old)..
blah more (old)..
tail: file.out: file truncated
blah..
blah ...
5
votes
6answers
2k views
Binary “tail” a file
I would guess most people on this site are familiar with tail, if not - it provides a "follow" mode that as text is appended to the file tail will dump those characters out to the terminal.
What I am ...