home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d7xx / d747 / aush.lha / AUSH / ExtraCmds.lha / englishdocs / split.doc < prev    next >
Text File  |  1992-09-04  |  881b  |  32 lines

  1. NAME
  2.     split - split a file into pieces
  3.  
  4. SYNOPSIS
  5.     split [ -n ] [ -c] [ file [ name ] ]
  6.  
  7. DESCRIPTION
  8.     split reads file and writes it in n-line pieces (default 1000
  9.     lines) onto a set of output files.  The name of the first output
  10.     file is name with aa appended, and so on lexicographically, up to
  11.     zz (a maximum of 676 files). If no output name is given, x is
  12.     default.
  13.     If -c option is specified, split counts in characters rather than
  14.     in lines (so making pieces of n-characters).
  15.     If no input file is given, or if - is given instead, then the
  16.     standard input file is used.
  17.  
  18. RETURN CODES
  19.     0 if all went well
  20.     1 in case of bad argument (fatal)
  21.     2 if one file couldn't be opened, or too much output files (fatal)
  22.     3 if memory couldn't be allocated (fatal)
  23.  
  24. CHANGES FROM UNIX
  25.     name can be longer than 12 characters.
  26.     added -c option
  27.  
  28. AUTHOR
  29.     Denis GOUNELLE
  30.     Last modified 04-Sep-92
  31.  
  32.