home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / disks / misc / disksplit / disksplit.doc < prev    next >
Text File  |  1996-05-08  |  3KB  |  76 lines

  1.     NAME
  2.     DiskSplit - split large file to save on floppy d.  ( v1.0 7-5-96 )
  3.  
  4.     TEMPLATE
  5.     DiskSplit [-v<fsize>s<size>qa] file
  6.  
  7.     DESCRIPTION
  8.     This program is a solution of problem: how to save over 2MB file
  9.     on 720KB floppy disk. It splits large file into smaller ones so
  10.     you can fit them on your floppy disk. With the twin program
  11.     DiskJoin you can join all these files again.
  12.  
  13.     This operation is often offered by archivisers (lha, arj, etc.).
  14.     But not all of them support "Multi volume mode". DiskSplit and
  15.     DiskJoin are very simple in use and are mainly designed to split
  16.     archived files (*.lha|*.lzh|*.arj|...).
  17.  
  18.     DiskSplit offers two ways of creating names for split files.
  19.     The first adds two digit number from 00 up to 99. If there is
  20.     no extension in the source filename, it adds a point (.) and
  21.     then puts the number:
  22.         foo -> foo.00, foo.01, foo.02, ...
  23.     If there is an extension, it leaves the first letter of it and
  24.     then puts the number:
  25.         foo.lha -> foo.l00, foo.l01, foo.l02, ...
  26.     The source file is not deleted.
  27.     The second way is archivisers mode. The first split file has the
  28.     same name as the source file. Next split files are created
  29.     similar to the first method, but the number starts at 01:
  30.         foo.lha -> foo.lha, foo.l01, foo.l02, ...
  31.     The source file is deleted (because it has the same name as the
  32.     first split file).
  33.     Note: This mode needn't be compatible with archivisers' "multi
  34.     volume mode". Currently I don't have proper archiviser to test
  35.     it.
  36.     The first mode is default, the second is switch on by -a option.
  37.  
  38.     You can specify the size of the split files. When copying to
  39.     floppy disks the most convenient is -v<fsize> option:
  40.         -v720 - MSDos (DD)
  41.         -v820 - Amiga OFS
  42.         -v880 - Amiga FFS
  43.         -v960 - Amiga DS0:
  44.         -v1.4 - MSDos (HD)
  45.     Sometimes nonstandard size is required. Type -s option followed
  46.     by your custom size in bytes:
  47.         -s1024 - split into 1KB files
  48.     The default size is -v720.
  49.  
  50.     When the -q option is set, there is no report.
  51.  
  52.  
  53.     INPUTS
  54.     file - large file to split. Enter only one.
  55.  
  56.     Options:
  57.      -v fixed volume size (720, 820, 880, 960 or 1.4)
  58.      -s<size> custom size (in bytes)
  59.      -q Quiet
  60.      -a Archiver style (first file name is source file name)
  61.  
  62.     RETURN
  63.     When the command fails, the reason should be printed (even with -q
  64.     option).
  65.  
  66.     AUTHOR
  67.     This piece of software is fully Public Domain. Do whatever you
  68.     want.
  69.  
  70.     If you have any suggestions or you find my program useful send
  71.     a mail to me.
  72.  
  73.     Rafaî Mantiuk
  74.     e-mail: cret@cerber.man.szczecin.pl
  75.  
  76.