home *** CD-ROM | disk | FTP | other *** search
- /*
- * Arc2Arc configuration file
- *
- * Note: This is an Arexx script that is passed to INTERPRET.
- * So don't change the comment or quotation style. Just edit
- * the values to suit your system.
- */
-
- /* Number of dearchivers */
- dearc.0 = 9
-
- /* Dearchivers */
- dearc.1 = '.TAR.GZ untar020 KEEP' /* Childpatterns before parentpatterns */
- dearc.2 = '.GZ gzip -d -c >' /* GZip requires redirection */
- dearc.3 = '.LZX unlzx -x'
- dearc.4 = '.ZIP unzip'
- dearc.5 = '.LZH lha x'
- dearc.6 = '.TGZ untar020 KEEP'
- dearc.7 = '.LHA lha x'
- dearc.8 = '.DMS execute sys:dos/dms2dir'
- dearc.9 = '.ADF unadf DEST ""'
-
- /* Number of archivers */
- arc.0 = 3
-
- /* Archivers */
- arc.1 = 'LHA lha a' /* arc.1 = default archiver */
- arc.2 = 'LZX cc:lzx040 -bi128 -bo128 -e -F -M4000 -Qf -r -9 a'
- arc.3 = 'ZIP cc:zip -R -9'
-
-
- /* Where to create arc2arc tmpdir */
- tmpdir = 't:'
-
-
- /* Error string: 'No dearchiver found for' */
- nodearcstr = 'No dearchiver found for'
-
- /* Overwrite prompt: 'Overwrite it?' */
- overwritestr = 'Overwrite it?'
-