home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / educ / book_rep.zip / GO.BAT < prev    next >
DOS Batch File  |  1988-07-14  |  3KB  |  74 lines

  1. echo off
  2. cls
  3. if exist manual*.* dir manual*.* /w
  4. if exist *.man dir *.man /w
  5. if exist *.txt dir *.txt /w
  6. if exist *.doc dir *.doc /w
  7. if exist read*.* dir read*.* /w
  8. echo    *** THE FILES ABOVE ARE DOCUMENTATION ****
  9. echo    YOU'LL FIND THE DOCUMENTATION FOR THIS DISK STORED IN FILE FORM.
  10. echo    .
  11. echo    Use the directory command DIR to get the file names: when you look at   
  12. echo    the filenames you'll see that some have .DOC or .TXT extensions or they
  13. echo    have names like readme.txt or readme or read.me.  These are your docu-
  14. echo    mentation files.  To display the text on the screen, use the DOS type
  15. echo    command.     THE PROPER FORMAT FOR THE TYPE COMMAND IS:                 
  16. echo           TYPE FILENAME.EXT (RETURN)                                 
  17. echo    USING THE ACTUAL FILE NAME, FULL EXTENSION AND NO SPACES        
  18. echo  *** you may stop and start the text scrolling by holding down the control
  19. echo    button and pressing S to stop and S to start.
  20. echo    Alternately, you can print the documentation by entering 
  21. echo           COPY FILENAME.EXT PRN (RETURN)
  22. echo .           
  23. echo  
  24. pause
  25. cls
  26. if exist *.bat dir *.bat /w
  27. if exist *.exe dir *.exe /w
  28. if exist *.com dir *.com /w
  29. echo  
  30. echo      THE ABOVE FILES ARE EXECUTABLE THROUGH DOS            
  31. echo    WE ADVISE THAT YOU READ ALL DOCUMENTATION BEFORE EXECUTING ANYTHING
  32. echo .
  33. echo    The computer looks for BAT, EXE, and then COM files.              
  34. echo    Usually the main file which starts things off has a name similar to   
  35. echo    the name of the program.  You start it all off by typing the program
  36. echo    name (without the extension) at the DOS prompt:   
  37. echo        EXAMPLE:     ASTROLOG  (RETURN) 
  38. echo    Is the proper way to execute the astrology program which has the 
  39. echo    executable file ASTROLOG.EXE.                               
  40. echo  .  
  41. echo ** IT IS WELL ADVISED TO VIEW THE CONTENTS OF BATCH FILES BEFORE STARTING
  42. echo    To do so, use the dos TYPE command as you did with document files.
  43. echo  .
  44. pause
  45. cls
  46. if exist *.bas dir *.bas
  47. echo  
  48. echo    ANY FILES IN BASIC ARE LISTED ABOVE             
  49. echo    If the file has the .BAS extension, you must first bring up basic to 
  50. echo    run the program.  Insert the disk with basic in the A drive and execute
  51. echo    your basic with the proper command:
  52. echo          GWBASIC (RETURN)
  53. echo    Once you have the basic screen on your monitor, you'll need the 
  54. echo    following commands to run the program.
  55. echo        FILES  (RETURN)     - is the directory command
  56. echo        LOAD"FILENAME       - loads a file into memory to be run (use the
  57. echo                              actual file name of the main file)
  58. echo        RUN                 - executes the program now loaded into memory
  59. echo .
  60. echo .
  61. pause
  62. cls
  63. echo  PD  SOFTWARE HOUSE
  64. echo  3080 OLCOTT #125A
  65. echo  SANTA CLARA, CA 95054
  66. echo  (408) 748-0461
  67. echo                        SHAREWARE
  68. echo  Shareware programs are copyrighted by their authors as noted in the 
  69. echo  documentation supplied with each program.  Please refer to the author's
  70. echo  restrictions in regards to copying or altering any files supplied with
  71. echo  the program.
  72. echo  FILES CREATED BY SOFTWAREHOUSE ARE COPYRIGHTED 1988
  73.  
  74.