home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / de104.zip / install.cmd next >
OS/2 REXX Batch file  |  1994-03-27  |  587b  |  27 lines

  1.         @echo off
  2.         @echo.
  3.         @echo.DE Installation
  4.         @echo.Version 1.04
  5.         @echo.(c) Copyright 1994 Simon Ma. All Rights Reserved.
  6.         @echo.
  7.         @if "%1"=="" goto usage
  8.         @echo.About to install DE,
  9.         pause
  10.  
  11.         Unpack.Exe Install.Dat %1>nul
  12.         Copy Readme.1st %1>nul
  13.  
  14.         @echo.
  15.         @echo.Installation finished.
  16.         @goto end
  17.  
  18. :usage
  19.  
  20.         @echo.Usage   : Unpack [destination drive+path]
  21.         @echo.Example : Unpack C:\DE
  22.         @echo.Meaning : Install on path C:\DE
  23.         @echo.
  24.  
  25. :end
  26.  
  27.