home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / MAGICM20.ZIP / MAGICM20.TD0 / TUTORIAL / HELP.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-04-04  |  626 b   |  27 lines

  1. echo off
  2. echo         
  3. if x%1 == xON goto turnon
  4. if x%1 == xOFF goto turnoff
  5. if x%1 == xon goto turnon
  6. if x%1 == xoff goto turnoff
  7. echo    Type Help ON to activate the Magic Mirror Help Facility.
  8. echo    Type Help OFF to disable the Magic Mirror Help Facility.
  9. goto end
  10. :turnon
  11. if not exist mm.h01 goto nothere
  12. ren mm.h01 mm.com
  13. echo    Magic Mirror Help will be activated.
  14. goto end
  15. :nothere
  16. echo    Magic Mirror Help is activated.
  17. goto end
  18. :turnoff
  19. if not exist mm.com goto nothere2
  20. ren mm.com mm.h01
  21. echo    Magic Mirror Help will be disabled.
  22. goto end
  23. :nothere2
  24. echo    Magic Mirror Help is disabled.
  25. :end
  26. echo on
  27.