home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 7 / Chip_Hitware_Vol_07.iso / chiphit7 / tools / 95rar / os2 / rar200p.exe / RCVT.CFG < prev    next >
Encoding:
Text File  |  1996-04-15  |  3.5 KB  |  123 lines

  1. ;
  2. ; ██████╗   █████╗  ██████╗     The RCVT Convertor for OS/2
  3. ; ██╔══██╗ ██╔══██╗ ██╔══██╗    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. ; ██████╔╝ ███████║ ██████╔╝    Archive Conversion Utility version 1.01
  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. ; Add <filename>
  24. ;
  25. ;            Specifies the name of the file which must be added to every
  26. ;            repacked archive. Full pathname should be provided.
  27. ;            Multiple "Add" strings are allowed.
  28. ;
  29. ; Add C:\BBS\MYBBS.ANS
  30. ; Add C:\BBS\MYBBS.LST
  31. ;
  32. ;
  33. ; Del <filename>
  34. ;
  35. ;            Specifes file(s) that should not be placed into the repacked
  36. ;            archive. Wildcards using is allowed. Root directory of the
  37. ;            archive is assumed if no full path given.
  38. ;            Multiple "Del" strings are allowed.
  39. ;
  40. ; Del *.frm
  41. ;
  42. ;
  43. ; Scan <filename-to-run>
  44. ;
  45. ;            You can set up program call to process files extracted from
  46. ;            the source archive before repacking. For instance, antivirus
  47. ;            program to scan files for computer viruses. Should the program
  48. ;            return non-zero exit code (ERRORLEVEL) the source archive will
  49. ;            not be repacked and corresponding message will be placed into
  50. ;            the log file RCVT.LOG.
  51. ;            Multiple "Scan" strings are allowed.
  52. ;
  53. ; Scan C:\TOOLS\ANTIVIR\AIDSTEST *.* /f/g
  54. ;
  55. ;
  56. ; Filelist <filename>
  57. ;
  58. ;            Specifies the file where source archives are listed.
  59. ;            The name of the source archive after successful conversion
  60. ;            is replaced with the new one as well as the actual size if
  61. ;            possible. If full path is not given then filelist in the
  62. ;            same directory with the archive is searched.
  63. ;            Multiple "Filelist" strings are allowed.
  64. ;
  65. Filelist FILES.BBS
  66. ;
  67. ;
  68. ;   2. Archiver definitions:
  69. ;
  70. ;   Upto 16 archiver sections could be defined here with the following calls:
  71. ;
  72. ;   PACK   to pack files into the archive (create the archive)
  73. ;   EXTR   to extract files from the archive
  74. ;   TEST   to test files in the archive
  75. ;   MASK   mask to select all files in the archive (*.* by default)
  76. ;
  77. ; NOTE: if you want to call DOS archivers, place "cmd /c" before the
  78. ; command string.
  79. ;
  80. ; Master archive definition: converting to RAR format
  81. .RAR
  82. PACK RAR a -s -std -c- -r -z$CMT$
  83. EXTR RAR x -std -c- -y -av-
  84. TEST RAR t -std -c-
  85.  
  86. ; Converting from old (prior to version 1.50) RAR format
  87. .RAR 52457E5E
  88. PACK RAR a -std -c- -r -z$CMT$
  89. EXTR RAR x -std -c- -y -av-
  90. TEST RAR t -std -c-
  91.  
  92. ; Converting from arj format
  93. .ARJ
  94. PACK CMD/cARJ a -r -a1 -z$CMT$
  95. EXTR CMD/cARJ x -y -v
  96. TEST CMD/cARJ t
  97.  
  98. ; Converting from zip format
  99. .ZIP
  100. PACK ZIP -S -r
  101. EXTR UNZIP
  102. TEST UNZIP -t
  103. MASK *
  104.  
  105. ; Converting from lzh format
  106. .LZH
  107. PACK LH a /a /s /e
  108. EXTR LH x /a /s /e /o
  109. TEST LH t
  110. MASK *
  111.  
  112. ; Converting from uc2 format
  113. .UC2
  114. PACK CMD/cUC a -s
  115. EXTR CMD/cUC e -f -s
  116. TEST CMD/cUC t
  117.  
  118. ; Converting from ha format
  119. .HA
  120. PACK CMD/cHA ar
  121. EXTR CMD/cHA xy
  122. TEST CMD/cHA t
  123.