home *** CD-ROM | disk | FTP | other *** search
- :==============================================================================
- : Install utilities in the \util directory
- : 04/15/91 - Install in both e:\util c:\usr\dosutil (under DOSMerge).
- : 04/25/91 - Install in the c:\dbin (DOS binaries) directory.
- : 05/18/91 - Use ccp instead of bcopy.
- : 12/08/92 - Add du.exe to list.
- : 09/30/93 - The target directory is now a command-line option
- :==============================================================================
- :
- @echo off
- if *%1==* goto Usage
-
- :==============================================================================
- : Install the programs
- :==============================================================================
-
- echo Installing utilities in %1
- ccp ccp.exe ccmt.exe cdir.exe chmod.exe list2bm.exe ls.exe grep.exe %1
- ccp ccp.exe bmtbl.exe t2bm.exe crc*.exe mkbm.bat cdx.bat ccp.exe du.exe %1
-
- goto done
-
- :==============================================================================
- : Display usage
- :==============================================================================
- :Usage
- echo Usage: install directory
- echo .
- echo The utility programs are installed in the specified target directory.
- echo .
- :done
-