home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
BLUEQ155.ZIP
/
OLX22.RDR
/
PACKER.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-08-12
|
703b
|
46 lines
@echo off
rem packer compress.exe reply_fname internals
cls
if (%1)==(PKZIP) goto PK
if (%1)==(PKPAK) goto PKPAK
if (%1)==(LHA) goto OTHER
if (%1)==(ARJ) goto OTHER
:PK
if (%3)==() goto PACK
md BQWRK >nul
copy %3 BQWRK >nul
blueqwk %2 rep-bw
cls
%1 %2 BQWRK\*.* %4 %5 %6 %7 %8 %9
goto CLEANUP
:PKPAK
if (%4)==() goto PACK
md BQWRK >nul
copy %4 BQWRK >nul
blueqwk %3 rep-bw
cls
%1 %2 %3 BQWRK\*.* %5 %6 %7 %8 %9
goto CLEANUP
:OTHER
if (%5)==() goto PACK
md BQWRK >nul
copy %5 BQWRK >nul
blueqwk %4 rep-bw
cls
%1 %2 %3 %4 BQWRK\*.* %6 %7 %8 %9
goto CLEANUP
:CLEANUP
echo y|del BQWRK\*.* >nul
rd BQWRK >nul
goto END
:PACK
%1 %2 %3 %4 %5 %6 %7 %8 %9
:END