TAILSection: FSF (1)Updated: February 2003 Index NAMEtail - output the last part of filesSYNOPSIStail [OPTION]... [FILE]...DESCRIPTIONPrint the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name. With no FILE, or when FILE is -, read standard input. Mandatory arguments to long options are mandatory for short options too.
If the first character of N (the number of bytes or lines) is a `+', print beginning with the Nth item from the start of each file, otherwise, print the last N items in the file. N may have a multiplier suffix: b for 512, k for 1024, m for 1048576 (1 Meg). With --follow (-f), tail defaults to following the file descriptor, which means that even if a tail'ed file is renamed, tail will continue to track its end. This default behavior is not desirable when you really want to track the actual name of the file, not the file descriptor (e.g., log rotation). Use --follow=name in that case. That causes tail to track the named file by reopening it periodically to see if it has been removed and recreated by some other program. AUTHORWritten by Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering.REPORTING BUGSReport bugs to <bug-coreutils@gnu.org>.COPYRIGHTCopyright © 2002 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. SEE ALSOThe full documentation for tail is maintained as a Texinfo manual. If the info and tail programs are properly installed at your site, the command
should give you access to the complete manual. Addition information is available on the The tail Command page on the The Linux Information Project website. Index
Created from the Linux Online Manual Pages |