home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Encyclopedia of Games
/
eog_disc2.iso
/
encyclop
/
dosgames
/
kids
/
countadd
/
ca.bat
< prev
next >
Wrap
DOS Batch File
|
1994-05-19
|
237b
|
13 lines
Echo off
goto load_ca
:no_ca
echo 'CAPROG.EXE' is not in the current directory so cannot load it.
goto end
:load_ca
cls
Echo Loading, please wait ...
if not exist caprog.exe goto no_ca
caprog %1 %2 %3 %4 %5 %6
goto end
:end