home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / INSTCS34.ZIP / installa.cmd next >
OS/2 REXX Batch file  |  1993-02-02  |  626b  |  30 lines

  1. @echo off
  2.  
  3.     if '%1' == '' goto USAGE
  4.  
  5.     if NOT exist %1\IBMC goto USAGE
  6.  
  7.     echo.
  8.     echo      Installing Corrective Servive CS00034 for IBM Cset/2 .. Part 1 of 2
  9.     echo.
  10.     echo.
  11.  
  12.     copy        a:\cs034.lst  %1\ibmc\cs00034.lst
  13.     pkunzip -fo a:\cs034a.zip %1\ibmc\bin *.exe
  14.     pkunzip -fo a:\cs034a.zip %1\ibmc\dll *.dll
  15.     pkunzip -fo a:\cs034a.zip %1\ibmc\lib *.lib
  16.  
  17.     echo.
  18.     echo.
  19.  
  20.     goto end
  21.  
  22. :USAGE
  23.     echo.
  24.     echo usage: install d:
  25.     echo.
  26.     echo        where d: is the drive that contains \IBMC
  27.     echo        the IBM Cset/2 compiler to be updated
  28.     
  29. :END
  30.