home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1993 #2
/
Image.iso
/
wp
/
dospel37.zip
/
DO-98.ZIP
/
DOM-10D.EXE
/
LZH-PAK.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-11-08
|
784b
|
27 lines
echo off
rem door J.A.M.Kleijn, Rotterdam.
if not %%(%2)==%%() goto begin
echo
echo Batchfile for converting .LZH archive files to .PAK files. This batch file
ECHO is used by DOMULTI.EXE, enter DOMULTI for more. Use MAKEPAK.BAT to convert
echo archive files to .PAK format.
echo
echo Batchfile om .LZH archive files naar .PAK file naar te converteren. Deze
echo batchfile wordt door DOMULTI.EXE aangeroepen, enter DOMULTI voor meer info.
echo Gebruik MAKEPAK.BAT om archivefiles naar .PAK vorm te converteren.
goto einde
:begin
md\tempdir(
LHA e %1\%2.%3 \tempdir(\
PAK m %1\%2 \tempdir(\*.*
goto klaar
:error
echo Error with %1\%2\.%3 !!, Boot system !!
pause
:klaar
if not exist %1\%2.PAK goto error
if exist %1\%2.PAK del %1\%2.%3
rd\tempdir(
:einde