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

操作系统开发

开发平台:

C/C++

  1. HEAD(1)                   Minix Programmer's Manual                    HEAD(1)
  2. NAME
  3.      head - print the first few lines of a file
  4. SYNOPSIS
  5.      head [-n] [file] ...
  6. OPTIONS
  7.      -n   How many lines to print
  8. EXAMPLES
  9.      head -6             # Print first 6 lines of stdin
  10.      head -1 file1 file2 # Print first line of two files
  11. DESCRIPTION
  12.      The first few lines of one or more files are printed.  The default  count
  13.      is 10 lines.  The default file is stdin.
  14. SEE ALSO
  15.      tail(1).
  16.                                                                              1