home *** CD-ROM | disk | FTP | other *** search
/ ftp.rarlab.com / 2014.05.ftp.rarlab.com.tar / ftp.rarlab.com / rar / rcvtw32.rar / Rcvt.cfg next >
Text File  |  1999-05-06  |  3KB  |  129 lines

  1. ;
  2. ;  The RCVT Convertor
  3. ;  ~~~~~~~~~~~~~~~~~~
  4. ;  Archive Conversion Utility version 1.02
  5. ;  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  6. ;  Configuration file
  7. ;  ~~~~~~~~~~~~~~~~~~
  8. ;
  9. ;
  10. ;   1. Options:
  11. ;
  12. ; OnError  NextArchive | Abort
  13. ;
  14. ;            The value of this option tells RCVT whether to continue
  15. ;            conversion with the next archive when error in the current
  16. ;            archive is reported by archiver. Set this option to 'Abort'
  17. ;            if you want RCVT to stop process archives when error occured.
  18. ;
  19. OnError NextArchive
  20. ;OnError Abort
  21. ;
  22. ;
  23. ;RepackRatio <Percent>
  24. ;
  25. ;            Specifies lowest acceptable compression ratio
  26. ;            after repacking.
  27. ;
  28. ;RepackRatio 100
  29. ;
  30. ;
  31. ; Add <filename>
  32. ;
  33. ;            Specifies the name of the file which must be added to every
  34. ;            repacked archive. Full pathname should be provided.
  35. ;            Multiple "Add" strings are allowed.
  36. ;
  37. ; Add C:\BBS\MYBBS.ANS
  38. ; Add C:\BBS\MYBBS.LST
  39. ;
  40. ;
  41. ; Del <filename>
  42. ;
  43. ;            Specifes file(s) that should not be placed into the repacked
  44. ;            archive. Wildcards using is allowed. Root directory of the
  45. ;            archive is assumed if no full path given.
  46. ;            Multiple "Del" strings are allowed.
  47. ;
  48. ; Del *.frm
  49. ;
  50. ;
  51. ; Scan <filename-to-run>
  52. ;
  53. ;            You can set up program call to process files extracted from
  54. ;            the source archive before repacking. For instance, antivirus
  55. ;            program to scan files for computer viruses. Should the program
  56. ;            return non-zero exit code (ERRORLEVEL) the source archive will
  57. ;            not be repacked and corresponding message will be placed into
  58. ;            the log file RCVT.LOG.
  59. ;            Multiple "Scan" strings are allowed.
  60. ;
  61. ; Scan C:\TOOLS\ANTIVIR\AIDSTEST *.* /f/g
  62. ;
  63. ;
  64. ; Filelist <filename>
  65. ;
  66. ;            Specifies the file where source archives are listed.
  67. ;            The name of the source archive after successful conversion
  68. ;            is replaced with the new one as well as the actual size if
  69. ;            possible. If full path is not given then filelist in the
  70. ;            same directory with the archive is searched.
  71. ;            Multiple "Filelist" strings are allowed.
  72. ;
  73. Filelist FILES.BBS
  74. ;
  75. ;
  76. ;   2. Archiver definitions:
  77. ;
  78. ;   Up to 16 archiver sections could be defined here with the following calls:
  79. ;
  80. ;   PACK   to pack files into the archive (create the archive)
  81. ;   EXTR   to extract files from the archive
  82. ;   TEST   to test files in the archive
  83. ;
  84. ; Master archive definition: converting to RAR format
  85. .RAR
  86. PACK RAR a -s -c- -r -z$CMT$
  87. EXTR RAR x -c- -y -av-
  88. TEST RAR t -c-
  89.  
  90. ; Converting from old (prior to version 1.50) RAR format
  91. .RAR 52457E5E
  92. PACK RAR a -c- -r -z$CMT$
  93. EXTR RAR x -c- -y -av-
  94. TEST RAR t -c-
  95.  
  96. ; Converting from arj format
  97. .ARJ
  98. PACK ARJ a -r -a1 -z$CMT$
  99. EXTR ARJ x -y -v
  100. TEST ARJ t
  101.  
  102. ; Converting from zip format
  103. .ZIP
  104. PACK WINRAR a -r
  105. EXTR WINRAR x -y
  106. TEST WINRAR t
  107.  
  108. ; Converting from lzh format
  109. .LZH
  110. PACK LHA a /rxp
  111. EXTR LHA x
  112. TEST LHA t
  113.  
  114. ; Converting from uc2 format
  115. .UC2
  116. PACK UC a -s
  117. EXTR UC e -f -s
  118. TEST UC t
  119.  
  120. ; Converting from ha format
  121. .HA
  122. PACK HA ar
  123. EXTR HA xy
  124. TEST HA t
  125.  
  126. ; Converting from cab format (disabled by default)
  127. ;.CAB
  128. ;EXTR EXTRACT /Y /E /A
  129.