home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 14 / 14.iso / s / s005 / 16.ddi / DOS / OS2_MDOS_HELP.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-03-12  |  591 b   |  31 lines

  1. @echo off
  2. rem SCCSID = @(#)help.bat    6.4 91/08/05
  3. rem *
  4. rem * Process HELP requests:  verify specification of "ON" or "OFF"
  5. rem *
  6. if "%1" == ""    goto msg
  7. if "%1" == "on"  goto yes
  8. if "%1" == "off" goto no
  9. if "%1" == "ON"  goto yes
  10. if "%1" == "OFF" goto no
  11. if "%1" == "On"  goto yes
  12. if "%1" == "oN"  goto yes
  13. if "%1" == "OFf" goto no
  14. if "%1" == "OfF" goto no
  15. if "%1" == "Off" goto no
  16. if "%1" == "oFF" goto no
  17. if "%1" == "oFf" goto no
  18. if "%1" == "ofF" goto no
  19. helpmsg %1 %2
  20. goto exit
  21. :msg
  22. helpmsg
  23. goto exit
  24. :yes
  25. prompt $i$p$g
  26. goto exit
  27. :no
  28. cls
  29. prompt $p$g
  30. :exit
  31.