minix man page for tail

Query: tail

OS: minix

Section: 1

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

TAIL(1) 						      General Commands Manual							   TAIL(1)

NAME
tail - print the last few lines of a file
SYNOPSIS
tail [-c n] [-f] [-n n] [file] ...
OPTIONS
-c The count refers to characters -f On FIFO or special file, keep reading after EOF -n The count refers to lines
EXAMPLES
tail -n 6 # Print last 6 lines of stdin tail -c 20 file # Print the last 20 characters of file tail -n 1 file1 file2 # Print last line of two files tail -n +8 file # Print the tail starting with line 8
DESCRIPTION
The last few lines of one or more files are printed. The default count is 10 lines. The default file is stdin. If the value of n for the -c or -n flags starts with a + sign, counting starts at the beginning, rather than the end of the file.
SEE ALSO
head(1). TAIL(1)
Related Man Pages
tail(1) - mojave
tail(1) - linux
tail(1) - plan9
tail(1) - netbsd
tail(1) - sunos
Similar Topics in the Unix Linux Community
Help with cut and tail
Question about details for the whole machine
How do i use tail & grep in real time here??
awk logic for tailing and printing
Command to find file system details on AIX