SPLIT.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. SPLIT(1)                  Minix Programmer's Manual                   SPLIT(1)
  2. NAME
  3.      split - split a large file into several smaller files
  4. SYNOPSIS
  5.      split [-n] [file [prefix]]
  6. OPTIONS
  7.      -n   Number of lines per piece (default: 1000)
  8. EXAMPLES
  9.      split -200 file     # Split file into pieces of 200 lines each
  10.      split file z        # Split file into zaa, zab, etc.
  11. DESCRIPTION
  12.      Split reads file and writes it out in n-line  pieces.   By  default,  the
  13.      pieces  are  called  xaa,  xab, etc.  The optional second argument can be
  14.      used to provide an alternative prefix for the output file names.
  15. SEE ALSO
  16.      cat(1).
  17.                                                                              1