Differences between revisions 2 and 3
Revision 2 as of 2008-11-22 14:08:52
Size: 725
Editor: localhost
Comment: converted to 1.6 markup
Revision 3 as of 2010-06-25 20:17:30
Size: 748
Editor: MatthiasPopp
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:

----
CategoryShell

How can I view periodic updates/appends to a file? (ex: growing log file)

tail -f will show you the growing log file. On some systems (e.g. OpenBSD), this will automatically track a rotated log file to the new file with the same name (which is usually what you want). To get the equivalent functionality on GNU systems, use tail -F instead.

This is helpful if you need to view only the updates to the file after your last view.

# Start by setting n=1
   tail -n $n testfile; n="+$(( $(wc -l < testfile) + 1 ))"

Every invocation of this gives the update to the file from where we stopped last. If you know the line number from where you want to start, set n to that.


CategoryShell

BashFAQ/049 (last edited 2010-06-25 20:17:30 by MatthiasPopp)