home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
progscal
/
vpascal
/
run.bat
< prev
next >
Wrap
DOS Batch File
|
1985-08-08
|
384b
|
19 lines
echo off
:run1
cls
echo checking for errors...
if exist %1 goto doit
echo what file do you want to run?
goto exit
:doit
vispas <%1 >%1.com
if errorlevel 5 goto exit
if errorlevel 1 goto edit
visbug %1
:edit
if errorlevel 1 vised %1/e
if errorlevel 1 goto run1
:exit
g