home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / source / util2src / install.bat < prev    next >
Encoding:
DOS Batch File  |  1993-09-30  |  1.2 KB  |  32 lines

  1. :==============================================================================
  2. : Install utilities in the \util directory
  3. : 04/15/91 - Install in both e:\util c:\usr\dosutil (under DOSMerge).
  4. : 04/25/91 - Install in the c:\dbin (DOS binaries) directory.
  5. : 05/18/91 - Use ccp instead of bcopy.
  6. : 12/08/92 - Add du.exe to list.
  7. : 09/30/93 - The target directory is now a command-line option
  8. :==============================================================================
  9. :
  10. @echo off
  11. if *%1==* goto Usage
  12.  
  13. :==============================================================================
  14. : Install the programs
  15. :==============================================================================
  16.  
  17. echo Installing utilities in %1
  18. ccp ccp.exe ccmt.exe cdir.exe chmod.exe list2bm.exe ls.exe grep.exe %1
  19. ccp ccp.exe bmtbl.exe t2bm.exe crc*.exe mkbm.bat cdx.bat ccp.exe du.exe %1
  20.  
  21. goto done
  22.  
  23. :==============================================================================
  24. : Display usage
  25. :==============================================================================
  26. :Usage
  27. echo Usage:  install directory
  28. echo .
  29. echo The utility programs are installed in the specified target directory.
  30. echo .
  31. :done
  32.