TAIL.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. TAIL(1)                   Minix Programmer's Manual                    TAIL(1)
  2. NAME
  3.      tail - print the last few lines of a file
  4. SYNOPSIS
  5.      tail [-c n] [-f] [-n n] [file] ...
  6. OPTIONS
  7.      -c   The count refers to characters
  8.      -f   On FIFO or special file, keep reading after EOF
  9.      -n   The count refers to lines
  10. EXAMPLES
  11.      tail -n 6           # Print last 6 lines of stdin
  12.      tail -c 20 file     # Print the last 20 characters of file
  13.      tail -n 1 file1 file2
  14.                          # Print last line of two files
  15.      tail -n +8 file     # Print the tail starting with line 8
  16. DESCRIPTION
  17.      The last few lines of one or more files are printed.  The  default  count
  18.      is 10 lines.  The default file is stdin.  If the value of n for the -c or
  19.      -n flags starts with a + sign, counting starts at the  beginning,  rather
  20.      than the end of the file.
  21. SEE ALSO
  22.      head(1).
  23.                                                                              1