home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
100 Games & More
/
100gamesandmore1995.iso
/
tmatch11
/
tilearch.bat
< prev
next >
Wrap
DOS Batch File
|
1993-09-17
|
389b
|
27 lines
@echo off
echo %1
echo %2
echo %3
rem %1 = complete name of file; %2 = archive type; %3 = specific tile set name
if %2 == .ZIP goto zip
if %2 == .LZH goto lha
if %2 == .ARJ goto arj
if %2 == .PAK goto pak
echo.
echo Unknown archive type %2
echo.
pause
goto end
:zip
pkunzip %1 %3
goto end
:lha
lha x %1 %3
goto end
:arj
arj e %1 %3
goto end
:pak
pak e %1 %3
:end