home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
euphoria
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1994-03-09
|
1KB
|
58 lines
@echo off
rem Euphoria Installation Procedure:
rem 1. a: (or b:) (or cd into directory containing install.bat)
rem 2. install
rem check for people who try to do a:install
if "%0"=="a:install" goto floppya
if "%0"=="A:INSTALL" goto floppya
if "%0"=="a:\install" goto floppya
if "%0"=="A:\INSTALL" goto floppya
if "%0"=="a:install.bat" goto floppya
if "%0"=="A:INSTALL.BAT" goto floppya
if "%0"=="a:\install.bat" goto floppya
if "%0"=="A:\INSTALL.BAT" goto floppya
if "%0"=="b:install" goto floppyb
if "%0"=="B:INSTALL" goto floppyb
if "%0"=="b:\install" goto floppyb
if "%0"=="B:\INSTALL" goto floppyb
if "%0"=="b:install.bat" goto floppyb
if "%0"=="B:INSTALL.BAT" goto floppyb
if "%0"=="b:\install.bat" goto floppyb
if "%0"=="B:\INSTALL.BAT" goto floppyb
:start0
if exist install.ex goto start1
goto fail
:floppya
a:
cd \
goto start0
:floppyb
b:
cd \
goto start0
:start1
if exist ex.exe goto start2
goto fail
:start2
echo loading installation program...
ex install
goto done
:fail
echo You must first cd to the directory containing
echo all of the Euphoria files, then type: install
echo See install.doc for detailed instructions.
echo.
pause
:done