home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
bbs_ra
/
rafm110.arj
/
RAFMZIP.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-09-22
|
852b
|
40 lines
@ECHO OFF
REM Example Batch file for use with RAFMALL.
REM
REM 2 parameters are passed to the batchfile:
REM %1 : Complete path including extension
REM %2 : Complete path WITHOUT extension.
REM
REM f.e:
REM Path of the AllFiles-listing is: C:\RA\ALLFILES.BBS
REM
REM Parameter 1: C:\RA\ALLFILES.BBS
REM Parameter 2: C:\RA\ALLFILES
REM
REM Examples for several archivers:
REM -----
REM For ARJ:
REM
ARJ a %2 %1 -m -e
REM Remove the -m if you want to keep the original listing
REM
REM -----
REM For ZIP:
REM
REM PKZIP %2 %1 -m
REM Remove the -m if you want to keep the original listing
REM
REM -----
REM For LZH:
REM
REM LhA m %2 %1
REM
REM Replace m with a if you want to keep the original listing
REM
REM ----
REM For ARC:
REM PkArc m %2 %1
REM
REM Replace m with a if you want to keep the original listing
REM