home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PERSONAL / SB52.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-09-06  |  794b  |  26 lines

  1. @echo off
  2. cls
  3. if %1x == x goto HELP
  4. if %2x == x goto HELP
  5. echo This will copy StatTrak files from %1 to %2\STATTRAK
  6. echo Press Ctrl Break to abort or any other key to continue
  7. pause >nul
  8. mkdir %2\STATTRAK
  9. copy %1*.* %2\STATTRAK
  10. cls
  11. echo starting StatTrak for Baseball...
  12. c:
  13. cd c:\STATTRAK
  14. SB
  15. goto END
  16. :HELP
  17. echo StatTrak for Baseball Installation
  18. echo =======================================
  19. echo Usage: INSTALL [source:] [destination:]
  20. echo =======================================
  21. echo Example: INSTALL A: C:   - Will install StatTrak files from drive A: to
  22. echo                            drive C: (C:\STATTRAK).
  23. echo Note: See the README file for the complete program documentation.
  24. echo       Type COPY README PRN and press [Enter] to print the documentation.
  25. :END
  26.