home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / personal / pnumer.zip / CATALOG.BAT < prev    next >
DOS Batch File  |  1993-05-31  |  2KB  |  90 lines

  1. echo off
  2. rem Copy CATALOG, or appropriate REPORT or CHART file to LPT1:
  3. rem CATALOG.DOC, PN.RPT, INT.RPT, NUMRW.RPT, RELRW.RPT, NUM.CHT
  4. if "%1"=="C" goto cat
  5. if "%1"=="c" goto cat
  6. if "%1"=="P" goto pn
  7. if "%1"=="p" goto pn
  8. if "%1"=="I" goto int
  9. if "%1"=="i" goto int
  10. if "%1"=="N" goto numrw
  11. if "%1"=="n" goto numrw
  12. if "%1"=="R" goto relrw
  13. if "%1"=="r" goto relrw
  14. if "%1"=="U" goto num
  15. if "%1"=="u" goto num
  16. cls
  17. echo  
  18. echo     ┌───────────────────────────────────────────────────────────┐
  19. echo     │                                                           │
  20. echo     │               P R O D U C T   C A T A L O G               │
  21. echo     │                                                           │
  22. echo     └───────────────────────────────────────────────────────────┘
  23. echo  
  24. echo     We offer a full family of numerology software for both 
  25. echo     Personal and Professional use. A complete Catalog as well as 
  26. echo     full length report samples from each of the programs can be
  27. echo     printed by entering the command:
  28. echo  
  29. echo                             CATALOG X
  30. echo     where:
  31. echo  
  32. echo     X is C for Catalog of Numerology Programs & Books (7 pages)
  33. echo     X is P for a sample from Personal Numerologist (8 pages)
  34. echo     X is I for a sample from Intimacy (8 pages)
  35. echo     X is N for a sample from Numerologist Report Writer (14 pages)
  36. echo     X is R for a sample from Relationship Report Writer (16 pages)
  37. echo     X is U for a sample from The Numerologist (5 pages)
  38. echo  
  39. goto end
  40. :cat
  41. echo  
  42. echo Printing Catalog & Order Form. . .
  43. echo  
  44. copy catalog.doc lpt1:
  45. echo  
  46. echo Printing completed
  47. goto end
  48. :pn
  49. echo  
  50. echo Printing sample report from Personal Numerologist. . .
  51. echo  
  52. copy pn.rpt lpt1:
  53. echo  
  54. echo Printing completed
  55. goto end
  56. :int
  57. echo  
  58. echo Printing sample report from Intimacy. . .
  59. echo  
  60. copy int.rpt lpt1:
  61. echo  
  62. echo Printing completed
  63. goto end
  64. :numrw
  65. echo  
  66. echo Printing sample report from Numerologist Report Writer. . .
  67. echo  
  68. copy numrw.rpt lpt1:
  69. echo  
  70. echo Printing completed
  71. goto end
  72. :relrw
  73. echo  
  74. echo Printing sample report from Relationship Report Writer. . .
  75. echo  
  76. copy relrw.rpt lpt1:
  77. echo  
  78. echo Printing completed
  79. goto end
  80. :num
  81. echo  
  82. echo Printing sample chart from The Numerologist. . .
  83. echo  
  84. copy num.cht lpt1:
  85. echo  
  86. echo Printing completed
  87. goto end
  88. :end
  89. echo  
  90.