home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 201.lha / Split.doc < prev    next >
Text File  |  1988-12-27  |  2KB  |  57 lines

  1.  
  2. /********************* Split *****************************************
  3.  
  4. File splitter - V1.0       Copyright 1987-1988 by Richard Lee Stockton
  5.                              permission granted for non-profit use and
  6.                              distribution. However, contributions sent
  7.                              to the author will be gladly and most
  8.                              gratefully spent. (address below)
  9.         
  10. USAGE: Split <path>filename <partsize>
  11.  
  12. EXAMPLE:
  13. cd ram:
  14. split df1:City.anim   - will break City.anim from df1: into 100k files
  15.                         named 1, 2, etc. on the RAM: disk.
  16. EXAMPLE:
  17. cd vd0:
  18. split War.data 150000 - will break War.data on VD0: into 150k files
  19.                         named 1, 2, etc. on VD0:.
  20.  
  21. Split was written to fill a need for a simple file splitter to
  22.    break down the size of those very large animation files into files
  23.    that your average BBS user can download within his time limit. Feel
  24.    free to use it for any other purpose you can imagine. It will work
  25.    on ANY type of file.
  26.  
  27. Destination files are written to the CURRENT directory. They are named
  28.    using numerals 1-9 then capital letters A-Z. If split is unable to
  29.    find the sourcefilename, it will quit.
  30.    
  31. Split does not test to see if there is enough room in the current
  32.    directory for all the partfiles. That part is up to you.
  33.  
  34. DEFAULT partsize = 100k bytes.
  35. MINimum partsize =   1k bytes.  (why would you want 'em this small?)
  36. MAXimum partsize = 1 Million bytes. (1000k)        (...or this big?)
  37.  
  38. If <partsize> falls out of range, the default partsize (100k) will be
  39.    used. Maximum number of parts = 35 (suffix = 1-9 then A-Z). 
  40.  
  41. RE-CONNECT EXAMPLE:
  42. join 1 2 3 4 5 6 7 8 9 A B C D E F as Action.anim
  43.  
  44. REMEMBER!:
  45.    The `join' command limits the number of parts to 15. (The 15th part
  46.    is F). If you have more than 15 parts, join them in sections and
  47.    then join the sections. (Put an `executeme' file in with the pieces,
  48.    so nobody gets confused! :-)
  49.                                             8/15/87  updated  3/8/88
  50.  
  51.                                              Comments/Contributions:
  52.                                               Richard Lee Stockton
  53.                                               21305 60th Ave. West
  54.                                               MtLkTerr, Wash 98043
  55.                                                (206)  776-1253
  56.  
  57.