home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / GA / GA030.ZIP / INSTALLH.BAT < prev    next >
DOS Batch File  |  1991-08-12  |  1KB  |  31 lines

  1. ECHO OFF
  2. cls
  3. REM This is an installation batch file for CURSES!
  4. IF .%2==. goto explain
  5. IF .%1==. goto explain
  6. %1ARCE %1CURSES *.* %2 -r
  7. ECHO That's all for now...
  8. GOTO END
  9. :explain
  10. ECHO To install this software on a hard disk or high capacity floppy:
  11. ECHO First make sure you have created the subdirectory where the
  12. ECHO program should be. For example, to create a subdirectory
  13. ECHO called CURSES, start in the root directory and enter this
  14. ECHO command:
  15. ECHO       MD CURSES
  16. ECHO Now, if your new program disk is in drive A, and your hard
  17. ECHO disk is drive C, enter this command:
  18. ECHO       A:INSTALLH A: C:\CURSES
  19. ECHO If your new program disk is in drive B, and your hard disk is
  20. ECHO drive C, enter this command:
  21. ECHO       B:INSTALLH B: C:\CURSES
  22. ECHO If your drives have different letters than these, just insert
  23. ECHO the correct letters into the command. Make sure you type
  24. ECHO the command with the spacing and punctuation exactly as
  25. ECHO shown in this example, and use the actual name of your
  26. ECHO subdirectory.
  27. ECHO To install the software on 360K floppy disks, use the command:
  28. ECHO INSTALL
  29. GOTO END
  30. :END
  31.