home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / educ / sf40_a.zip / RUN.BAT < prev    next >
DOS Batch File  |  1989-12-12  |  357b  |  20 lines

  1. ECHO OFF
  2. IF EXIST GWBASIC.EXE GOTO RUNGWB
  3. IF NOT EXIST BASICA.COM GOTO MISSING
  4. GOTO RUNBASICA
  5.  
  6. :RUNGWB
  7. gwbasic start
  8. GOTO END
  9.  
  10. :RUNBASICA
  11. basica start
  12. GOTO END
  13.  
  14. :MISSING
  15. CLS
  16. ECHO Sorry!  SIGN FRIENDS needs either GWBASIC.EXE or BASICA.COM
  17. ECHO to be located on this disk.  Copy whichever you have onto
  18. ECHO this disk and try again.
  19. :END
  20.