One Day One GNU/Linux Command (TAIL)

1 view
Skip to first unread message

Bharathi Subramanian

unread,
May 15, 2008, 2:01:22 AM5/15/08
to GNU/Linux User Group of TCE, VEC-FOSS, GNU/Linux Users Group - Trichy
One Day One GNU/Linux Command
=============================

tail - Output the last part of files.

Summary:

Display the last 10 lines of each FILE to stdout. With more than one
FILE, precede each with a header giving the file name.

Examples:

$ tail midas.txt -- Show only the last 10 Lines.

$ tail f1 f2 -- Show the last 10 lines of 2 files with small header.

$ tail -vn 5 myfile -- Show only last 5 Lines with header.

$ tail -c 12 myfile -- Show only last 12 Bytes.

$ tail -q myfile -- Don't show headers.

$ tail --retry myfile -- Keep retrying to open myfile.

$ tail -f maillog -- Output appended with file data as the file grows.
Useful to monitor logs.

$ tail -f -s 10 maillog -- Once in every 10s update the output.

$ tail -f --pid=200 myfile -- Terminate tail after PID(200) dies.

Read: man tail

HTH :)
--
Bharathi S

Reply all
Reply to author
Forward
0 new messages