tail.in.:How to
The tail command
What is tail?
tail is a program on Unix and Unix-like systems (Linux) used to display the last few lines of a text file or 'piped' data. Tail can be used to monitor changes to files and display the changed lines in realtime. This makes Tail ideal for watching log files (such as the apache error log).
Usage
The command line syntax for tail is:tail [options] <file_name>
tail will print the last 10 lines by default, however command line options will allow you to change the number of lines printed and the printing units (lines, blocks or bytes) may be changed.
|
Ok, so phpDesigner?