home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
975.COPYGERM.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-10
|
1KB
|
86 lines
@echo off
if "%1" == "109" goto bf109
if "%1" == "110" goto bf110
if "%1" == "j87" goto stuka
if "%1" == "J87" goto stuka
if "%1" == "bmb" goto bomber
if "%1" == "BMB" goto bomber
goto noparm
:bf109
if not exist %2.109 goto nofil109
@echo on
copy %2.109 b:\tfh
@echo off
shift
if not "%2" == "" goto bf109
goto tcopy109
:nofil109
echo %2.109 does not exist!
shift
if "%2" == "" goto tcopy109
goto bf109
:tcopy109
@echo on
copy p109.top b:\tfh
@echo off
goto exit
:bf110
if not exist %2.110 goto nofil110
@echo on
copy %2.110 b:\tfh
@echo off
shift
if not "%2" == "" goto bf110
goto tcopy110
:nofil110
echo %2.110 does not exist!
shift
if "%2" == "" goto tcopy110
goto bf110
:tcopy110
@echo on
copy p110.top b:\tfh
@echo off
goto exit
:stuka
if not exist %2.j87 goto nofilj87
@echo on
copy %2.j87 b:\tfh
@echo off
shift
if not "%2" == "" goto stuka
goto tcopyj87
:nofilj87
echo %2.j87 does not exist!
shift
if "%2" == "" goto tcopyj87
goto stuka
:tcopyj87
@echo on
copy pj87.top b:\tfh
@echo off
goto exit
:bomber
if not exist %2.bmb goto nofilbmb
@echo on
copy %2.bmb b:\tfh
@echo off
shift
if not "%2" == "" goto bomber
goto tcopybmb
:nofilbmb
echo %2.bmb does not exist!
shift
if "%2" == "" goto tcopybmb
goto bomber
:tcopybmb
@echo on
copy pbmb.top b:\tfh
@echo off
goto exit
:noparm
echo.
echo Aircraft Type parameter must be supplied!
echo.
:exit