home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Current Shareware 1994 January
/
SHAR194.ISO
/
email
/
qprn103.zip
/
EZ-PACK.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-08-29
|
856b
|
21 lines
REM This batch file is for saving your place in a QWK packet with EZ-RDR.
REM The line "%1 -d %3 *.ndx" deletes the old .NDX files from the QWK
REM packet if you're using EZ-RDR's default PKZIP command, PKZIP.EXE -EX.
REM If you're using this command, and bookmarks are being inserted, %3 will
REM be the name of the QWK file. If you're not passing any options to
REM PKZIP, this parameter will be %2. If you're passing additional
REM options, increase this parameter number by 1 for each additional
REM option. For example, if the PKZIP command is PKZIP.EXE -EX -K, %4
REM would be the name of the QWK.
REM
@echo off
parmscan *.RD %1 %2 %3 %4 %5 %6 %7 %8 %9
if not errorlevel 1 goto bookmark
%1 %2 %3 %4 %5 %6 %7 %8 %9
goto endit
:bookmark
ren messages.bak messages.dat
%1 -d %3 *.ndx
%1 %2 %3 %4 %5 %6 %7 %8 %9 MESSAGES.DAT
:endit