home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / australi / qed_bat.lzh / GO.BAT < prev    next >
DOS Batch File  |  1991-04-28  |  2KB  |  40 lines

  1. @echo off
  2. echo off
  3. rem 900914etpc End User Introducer 
  4. rem preferred command line switch to display BATch files' internal help 
  5. rem message is ( in order of preference )  
  6. rem (1 Best)   /?   uses ═╦═ DR-DOS ═╦═ 's standard option symbol ( slash '/' )          
  7. rem                       ╚═ MS-DOS ═╝
  8. rem (2     )   -?   uses Unix standard command line switch symbol ( dash  '-' ) 
  9. rem                 which seems to have inspired ═╦═ Digital Research Inc ═╦═ . 
  10. rem                                               ╚══════ MicroSoft ═══════╝ 
  11. rem (3     )   /H   reasonable, unless you want to use /H to mean something 
  12. rem            /h   other than H/elp. 
  13. rem . 
  14. rem (4     )   -H   starting to get non-standard on two points.  
  15. rem            -h 
  16. rem . 
  17. rem (5 Worst)  ?    potentially ambiguous with one letter filename. 
  18. rem For space reasons, QEDSME doesn't like to support all methods 
  19. rem but always support the first two  /?  -?   . 
  20. if "%1" == "/?" goto :help
  21. if "%1" == "-?" goto :help
  22. if "%1" == "/H" goto :help
  23. if "%1" == "/h" goto :help
  24.     HyText -a    -c QedEue
  25.     rem          -c ...... colour monitor 
  26.     rem          -m ...... mono   monitor 
  27.     rem       -o ......... skip opening screen 
  28.     rem    -a ............ use plain ascii printer 
  29. goto done
  30. :help
  31.     ECHO        QEDEUE - SMartEditors(tm) for End User Editing 
  32.     ECHO                 -  910428etpc v1.00a
  33.     ECHO         Requires HyTeXt.exe from PCSIG1234 to run demonstration. 
  34.     ECHO . 
  35.     ECHO        QEDSME  PO Box 363   Mona Vale  NSW  2103  Australia 
  36.     ECHO , 
  37.     rem ECHO         Pretty Printing on ═╦═ GEStetner ═╦═ printers  
  38.     rem ECHO                             ╚══ CitiZeN ══╝ 
  39. :done
  40.