home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / ARCHIVE / ZIPPER13.ZIP / ZIPPER.DOC next >
Encoding:
Text File  |  1990-09-18  |  5.2 KB  |  136 lines

  1.  
  2.  
  3.  
  4.                    ZIPPER Version 1.3
  5.             
  6.                      Multiple archive creator
  7.           (c) Wolfgang Thronicke & Friedrich Wichmann
  8.                    F.R. of Germany
  9.  
  10.                           Documentation
  11.  
  12.                             90-09-18
  13.  
  14.  
  15. -------------------------------------------------------------------------------
  16. NOTE: ZIPPER is public domain software. You can use it. Forget it. Copy it...
  17. However, we take no responsibility for any type of damages caused by ZIPPER.
  18. The only restriction is that you must not change any part of the distribution.
  19. You do NOT have to pay any amout of money to anyone. If you like it and want
  20. to let us know you can send us a small note via e-mail. Suggestions for
  21. future extensions or bug reports are also appreciated for we are also 
  22. interested in improving this piece of software.
  23.  
  24. E-Mail to: wolf@cadlab.de
  25.            fwich@uni-paderborn.de
  26. -------------------------------------------------------------------------------
  27.  
  28.  
  29. Contents:
  30.   1. Intro
  31.   2. Requirements
  32.   3. Limitations
  33.   4. Installation
  34.   5. Usage
  35.  
  36.  
  37. 1. Intro
  38. --------
  39. The ZIPPER program helps you to distribute files to a series of PKZIP archives.
  40. It was created with the demand to build archives with a limited maximal size.
  41.  
  42. These are the main features of the program:
  43.   ■ Automatic generation of multiple archivs with limited size
  44.   ■ Inclusion of subdirectories (or not)
  45.   ■ Backup mode
  46.   ■ Specification of files and directories to be archived
  47.   ■ Easy to use (see size of zipper.doc!)
  48.  
  49. 2. Requirements
  50. ---------------
  51. ZIPPER needs at least 220K for itself to work. There must be enough memory
  52. left for PKZIP to work. Please refer to the PKZIP manual for detailed
  53. information. If you have more than 512K main memory everything should work
  54. fine. ZIPPER works with DOS Versions greater or equal than 3.0.
  55.  
  56. 3. Limitations
  57. --------------
  58. For all the files to be "zipped" are stored in main memory (of course with
  59. their names and sizes only) you can run into problems if you try to archive
  60. to many files. We can give only a rough estimation: Less than 2000 files
  61. surely will be handled properly.
  62.  
  63. 4. Installation
  64. ---------------
  65. Simply copy ZIPPER.EXE in your execution path (see DOS -> PATH variable).
  66. PKZIP.EXE must also be located somewhere in the execution path. That's all.
  67.  
  68. 5. Usage
  69. --------
  70. To get a quick overview of ZIPPER's options simply type "ZIPPER" when you are
  71. in DOS.
  72.  
  73. To make ZIPPER work two parameters are mandatory:
  74.  
  75.   -s<integernum>    specifies the maximum size of the archiv in 1000Bytes
  76.                     Example: -s360 builds only archives with less than
  77.                      360000 bytes
  78.   
  79.   <archivname>      The basename of the archiv WITHOUT extension.
  80.                     The filename must not exceed 5 letters in length.
  81.                     Example: e:\archiv\test            is legal
  82.                      \archiv\backup\v45\progr  is legal
  83.                  arc                       is legal
  84.                  archive                   !too long!
  85.                                   ^^ (7 letter in filename)
  86.  
  87.   ZIPPER will start in the current directory and collect recursively all
  88.   files in it and its subdirs.
  89.   The resulting archives are named <archivname>001, <archivname>002 etc.
  90.  
  91.   Options:
  92.   --------
  93.     -i         increment to next archive number. ZIPPER looks in the path 
  94.                for the archives and searches for already existing archives
  95.            beginning with numbers 001... and chooses the next free
  96.            number for the new archives to begin with.
  97.            
  98.     -n         do not recurse into subdirectories
  99.           
  100.     -o         overwrite existing archives. In normal mode ZIPPER stops when
  101.                it finds an already existing archive to prevent data loss.
  102.            This options toggles this. Use with care!
  103.  
  104.     -p         stop before creating the archive. This option allows you to
  105.                change disk when archiving, but note: Creating the archives
  106.            on a floppy disk is much slower than on a hard disk.
  107.            
  108.     -r<file>   read files to archived from <file> or stdin if no file
  109.                specified. This option allows you to collect files from
  110.            different places. If no file is given input is taken from
  111.            the keyboard (you can also use a pipe) until EOF is encountered.
  112.            Each line can be:
  113.            - ordinary file
  114.            - directory
  115.            - filename with wildcards
  116.            
  117.            Example:
  118.            File:myfiles
  119.            e:\prg
  120.            d:\work\*.pas
  121.            d:\work\zipper\zipper.doc
  122.            
  123.            Call:   zipper -rmyfiles -s<xxx> test
  124.            will archive all files in prg (and step recursively through all
  125.            subs), all *.pas files in e:\work and the file zipper.doc.
  126.  
  127.                You can also use the output of other programs. Especially
  128.            utilities that are similar to the UNIX "find" are very
  129.            valuable, for example the "stuff" program from Rahul Dhesi.
  130.            Example:  stuff *.pas *.bak | zippper -r -s360 demo
  131.                      will archiv all .pas and .bak files in the current
  132.                  directory and its subdirectories.
  133.  
  134. -------------------------------------------------------------------------------
  135. (c) WF 1990 PB
  136.