home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / ARCHIVE / ADDC21.ZIP / ADD.DOC < prev    next >
Encoding:
Text File  |  1991-11-17  |  5.7 KB  |  179 lines

  1.              ADDCOMM 2.1 - Add comments to ZIP & ARJ files!
  2.               Written by Grant Fisher - Copyright (C) 1991
  3.  
  4.        This is the latest release of ADDCOMM, a program which adds large
  5. comments to ZIP and also ARJ files.  This program fully supports the 
  6. use of wildcards (ie. *.ZIP, *.*, *.ARJ) which makes it one of the 
  7. handiest programs you will use in your everyday computing life (apart 
  8. from ARJ and PKZIP of course).  Also, I strongly recommend you register 
  9. your copys of PKZIP and ARJ if you use them often.  Think of how much
  10. disk space you have saved (not to mention download time) by using these
  11. programs.  Both these programs are well worth buying!!
  12.  
  13.        There are other utilities around which will add ZIP comments for
  14. you.  The one I used to use (ZIPCOM) did the job, but as it was written 
  15. in BASIC, the executable  file  was very large (around 50K), and it was 
  16. very slow in executing.  It also left a very annoying residue file called 
  17. "volume.eri" in my directorys, which really pissed me off!  
  18.  
  19.        ADDCOMM will bring all of your ARJ and ZIP archives to life with
  20. text file headers which could advertise where the archive came from.  It
  21. is fully interactive so you don't have to remember thirty command line
  22. options, just type ADD and answer the questions!  Sysops of BBS's will
  23. benefit greatly from the banners which they will place on their files,
  24. and the fact that it will comment BOTH major archive formats in one go!
  25.  
  26.        ADDCOMM was written in C, not  BASIC, so the resulting executable
  27. file is small and the program runs a lot quicker than ZIPCOM!  In fact
  28. it is less than half the size than ZIPCOM and it will also handle ARJ 
  29. archives as well as being much quicker!!
  30.  
  31.        ADDCOMM has been extensively tested with PKZIP 1.10 and ARJ 2.21.
  32. It will crash if these programs aren't available in the current directory
  33. or DOS PATH.  If you aren't sure about the PATH statement, see your DOS
  34. manual for more details.  ADDCOMM should be upwardly compatible with
  35. future releases of ARJ and PKZIP.
  36.  
  37.        ADDCOMM is not free  software.  If you use it often, I would like
  38. it if you would send a donation ($ up to you) to the address below.  The
  39. C source  code is also available $10 from the  same address.  You are
  40. permitted  to freely  distribute this  software to whoever  you like, in
  41. fact I  encourage it!  I only ask that you make sure this  DOC file goes
  42. with it.
  43.  
  44. ------------------------------------------------------------------------
  45.  
  46. USAGE
  47.  
  48.        Typing ADD /? at the DOS prompt will give you the help screen
  49. as shown below :
  50.  
  51. Usage : ADD [zipfile|arjfile] [commfile]
  52.  
  53. zipfile = name of ZIP file(s) to comment
  54. arjfile = name of ARJ file(s) to comment
  55. commfile = name of file containing comment
  56.  
  57. Valid wildcards : *, *.*, *.zip, *.arj
  58.  
  59. The name of the ZIP/ARJ file and the comment file are optional from the
  60. command line.
  61.  
  62. EXAMPLES :
  63.                     1.  Command-line mode
  64.                     ---------------------
  65.  
  66. a.)  Add comment in "BBS.ADD" to "HOST.ZIP" from command line :
  67.  
  68.        ADD HOST.ZIP BBS.ADD
  69.  
  70. b.)  Add comment in "BBS.ANS" to "HOST.ZIP" & "HOST.ARJ" (if both exist) :
  71.  
  72.        ADD HOST BBS.ANS
  73.  
  74. c.)  Add comment in "BANNER.TXT" to all ARJ files in current directory :
  75.  
  76.        ADD *.ARJ BANNER.TXT
  77.  
  78. d.)  Add comment in "HEADER" to all ARJ & ZIP files (sysops!) :
  79.  
  80.        ADD *.* HEADER
  81.  
  82.                        2.  Semi-interactive mode
  83.                        -------------------------
  84.  
  85. a.)  Add comment in "BBS.ADD" to "HOST.ZIP", parsing HOST.ZIP :
  86.  
  87. C:\>ADD HOST.ZIP <enter>
  88.  
  89. Comment file for HOST.ZIP : BBS.ADD <enter>
  90.  
  91. b.)  Add comment in "BBS.ANS" to "HOST.ZIP" & "HOST.ARJ" (if both exist) :
  92.  
  93. C:\>ADD HOST <enter>
  94.  
  95. Comment file for HOST : BBS.ANS <enter>
  96.  
  97. c.)  Add comment in "BANNER.TXT" to all ARJ files in current directory :
  98.  
  99. C:\>ADD *.ARJ <enter>
  100.  
  101. Comment file for *.ARJ : BANNER.TXT <enter>
  102.  
  103. d.)  Add comment in "HEADER" to all ARJ & ZIP files (sysops!) :
  104.  
  105. C:\>ADD * <enter>   (Note : *.* will also work)
  106.  
  107. Comment file for *.* : HEADER <enter>
  108.  
  109.                        3.  Interactive mode
  110.                        --------------------
  111.  
  112. a.)  Add comment in "BBS.ADD" to "HOST.ZIP" :
  113.  
  114. C:\>ADD <enter>
  115.  
  116. ARJ/ZIP file(s) : HOST.ZIP <enter>
  117.  
  118. Comment file for HOST.ZIP : BBS.ADD <enter>
  119.  
  120. b.)  Add comment in "BBS.ANS" to "HOST.ZIP" & "HOST.ARJ" (if both exist) :
  121.  
  122. C:\>ADD <enter>
  123.  
  124. ARJ/ZIP file(s) : HOST <enter>
  125.  
  126. Comment file for HOST : BBS.ANS <enter>
  127.  
  128. c.)  Add comment in "BANNER.TXT" to all ARJ files in current directory :
  129.  
  130. C:\>ADD <enter>
  131.  
  132. ARJ/ZIP files : *.ARJ <enter>
  133.  
  134. Comment file for *.ARJ : BANNER.TXT <enter>
  135.  
  136. d.)  Add comment in "HEADER" to all ARJ & ZIP files (sysops!) :
  137.  
  138. C:\>ADD <enter>
  139.  
  140. ARJ/ZIP files : * <enter>
  141.  
  142. Comment file for *.* : HEADER <enter>
  143.  
  144. ------------------------------------------------------------------------
  145.  
  146. VALIDATION
  147.  
  148.        ADDCOMM has a validation code added to it by the program VALIDATE
  149. from McAfee  Associates.  If you  obtain results  which differ  from the
  150. ones  below, the program has most likely been  altered.  If you have any
  151. queries, contact the author at the Internet address below.
  152.  
  153.           File Name:  ADD.EXE
  154.                Size:  13,324
  155.                Date:  11-17-1991
  156. File Authentication:
  157.      Check Method 1 - 7BBE
  158.      Check Method 2 - 029B
  159.  
  160. ------------------------------------------------------------------------------
  161.  
  162. Please make all cheques payable to GRANT FISHER.
  163.  
  164. Internet address :
  165.  
  166. Grant Fisher
  167. Internet : T9014123@phillip.edu.au
  168.  
  169. Postal address :
  170.  
  171. Grant Fisher
  172. 265 Smiths Gully Road
  173. Smiths Gully 3760
  174. Victoria, Australia.
  175.  
  176. PKZIP is copyright PKWARE inc.
  177. ARJ is copyright ROBERT K JUNG.
  178.  
  179. ------------------------------------------------------------------------------