home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Enter 1999 April / enter_04_1999_1.iso / OS2 / RAR250B2 / RCVT.CFG < prev    next >
Text File  |  1997-01-28  |  4KB  |  132 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. ;   Upto 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. ;   MASK   mask to select all files in the archive (*.* by default)
  84. ;
  85. ; NOTE: if you want to call DOS archivers, place "cmd /c" before the
  86. ; command string.
  87. ;
  88. ;
  89. ; Master archive definition: converting to RAR format
  90. .RAR
  91. PACK RAR a -s -std -c- -r -z$CMT$
  92. EXTR RAR x -std -c- -y -av-
  93. TEST RAR t -std -c-
  94.  
  95. ; Converting from old (prior to version 1.50) RAR format
  96. .RAR 52457E5E
  97. PACK RAR a -std -c- -r -z$CMT$
  98. EXTR RAR x -std -c- -y -av-
  99. TEST RAR t -std -c-
  100.  
  101. ; Converting from arj format
  102. .ARJ
  103. PACK CMD/cARJ a -r -a1 -z$CMT$
  104. EXTR CMD/cARJ x -y -v
  105. TEST CMD/cARJ t
  106.  
  107. ; Converting from zip format
  108. .ZIP
  109. PACK ZIP -S -r
  110. EXTR UNZIP
  111. TEST UNZIP -t
  112. MASK *
  113.  
  114. ; Converting from lzh format
  115. .LZH
  116. PACK LH a /a /s /e
  117. EXTR LH x /a /s /e /o
  118. TEST LH t
  119. MASK *
  120.  
  121. ; Converting from uc2 format
  122. .UC2
  123. PACK CMD/cUC a -s
  124. EXTR CMD/cUC e -f -s
  125. TEST CMD/cUC t
  126.  
  127. ; Converting from ha format
  128. .HA
  129. PACK CMD/cHA ar
  130. EXTR CMD/cHA xy
  131. TEST CMD/cHA t
  132.