home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1 / HamRadio.cdr / cw / novicepl / lesson.bat < prev    next >
DOS Batch File  |  1992-01-10  |  380b  |  19 lines

  1. echo off
  2. cls
  3. if not exist MORSE.EXE goto msg
  4. if exist TEACH.COM goto ok
  5. :msg
  6. echo  
  7. echo  
  8. echo             The two programs MORSE.EXE and TEACH.COM must be in
  9. echo             the same(default) directory, or on the same disk as
  10. echo             this as this program.
  11. echo  
  12. goto end
  13. :ok
  14. TEACH
  15. if not errorlevel 5 goto end
  16. MORSE MORSE.TMP 5
  17. erase MORSE.TMP
  18. :end
  19.