home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT098.ZIP / HELP!.ZIP / HELP.BAT next >
DOS Batch File  |  1989-11-16  |  2KB  |  54 lines

  1. echo off
  2.         : HELP.BAT. Checks an archive for the help file specified on the
  3.         : command line, unARCs it, and shows it with LIST.COM
  4.         : expects LIST and PKXARC in the path, C: drive, and a file called
  5.         : \ut\helpfile. Change to your taste.
  6.  
  7. if X%1==X? goto SHOWDIR
  8. if X%1==X goto HLPMSG
  9.  
  10. if exist      C:\%1.hlp  goto ERROR1
  11. pkxarc        C:\ut\helpfile  %1.hlp  C:\
  12. if not exist  C:\%1.hlp  goto SORRY
  13. xeq list      C:\%1.hlp
  14. del           C:\%1.hlp
  15.  
  16. goto END
  17.  
  18. :SHOWDIR
  19. echo HELP: THESE HELP FILES ARE AVAILIBLE
  20. pkxarc -vm C:\ut\helpfile
  21. goto END
  22.  
  23. :SORRY
  24. echo HELP: NO HELP AVAILIBLE  "%1"
  25. goto END
  26.  
  27. :ERROR1
  28. echo HELP: Error: Help file "%1.hlp" already expanded in root directory!
  29. goto END
  30.  
  31. :HLPMSG
  32. echo HELP: SYNTAX: HELP [filename]
  33. echo               HELP ? for list of help files
  34. goto END
  35.  
  36. :END
  37. echo.
  38.  
  39. : Visit Twit's End BBS, the gigabyte board! (501) 771-0114. Home of the 
  40. :Programmer's Technical Reference. No fees, no postcards, no begging, over 
  41. :20,000 files online (and growing by leaps and bounds!).
  42. : While you're on the End, you might download a copy of the shareware version
  43. :of the Programmer's Technical Reference. (DOSREFxx.ZIP). The Reference 
  44. :contains just about everything you'd care to know about DOS, the BIOS, device 
  45. :drivers, and general programming information for the IBM. If you choose to 
  46. :register your copy, your $25 check gets you the very latest Registered User 
  47. :version, which is over 3 megs, crammed onto three disks with LHarc. Shove all 
  48. :those crummy reference books onto the floor! Why flip pages when it's all 
  49. :online? Registered users also get special access and support via Twit's End 
  50. :BBS. Such a deal! You can also order at the address below:
  51. :brought to you by:
  52. :     Dave Williams, PO Box 181, Jacksonville AR 72076-0181 USA
  53. :11/16/89
  54.