HEAD.1
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  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