home *** CD-ROM | disk | FTP | other *** search
/ Hráč 1997 February / Hrac_09_1997-02_cd.bin / UTILS / SHAREWAR / RAR / RAR200.EXE / rar / RCVT.CFG < prev    next >
Text File  |  1996-04-14  |  3KB  |  117 lines

  1. ;
  2. ; ██████╗   █████╗  ██████╗     The RCVT Convertor
  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. ;
  76. ; Master archive definition: converting to RAR format
  77. .RAR
  78. PACK RAR a -s -std -c- -r -z$CMT$
  79. EXTR RAR x -std -c- -y -av-
  80. TEST RAR t -std -c-
  81.  
  82. ; Converting from old (prior to version 1.50) RAR format
  83. .RAR 52457E5E
  84. PACK RAR a -std -c- -r -z$CMT$
  85. EXTR RAR x -std -c- -y -av-
  86. TEST RAR t -std -c-
  87.  
  88. ; Converting from arj format
  89. .ARJ
  90. PACK ARJ a -r -a1 -z$CMT$
  91. EXTR ARJ x -y -v
  92. TEST ARJ t
  93.  
  94. ; Converting from zip format
  95. .ZIP
  96. PACK PKZIP -a -r -p -whs
  97. EXTR PKUNZIP -e -d
  98. TEST PKUNZIP -t
  99.  
  100. ; Converting from lzh format
  101. .LZH
  102. PACK LHA a /rxp
  103. EXTR LHA x
  104. TEST LHA t
  105.  
  106. ; Converting from uc2 format
  107. .UC2
  108. PACK UC a -s
  109. EXTR UC e -f -s
  110. TEST UC t
  111.  
  112. ; Converting from ha format
  113. .HA
  114. PACK HA ar
  115. EXTR HA xy
  116. TEST HA t
  117.