home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / p2fix21.zip / install.cmd
OS/2 REXX Batch file  |  1995-07-26  |  533b  |  32 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo Moving files to correct directories.
  5. echo.
  6.  
  7. md                PEL
  8. move *.pel        PEL
  9. move *.rsp        PEL
  10. move make_ae.cmd  PEL
  11.  
  12. md                DLL
  13. move *.dll        DLL
  14.  
  15. md                HELP
  16. move *.hlp        HELP
  17.  
  18. echo.
  19. echo Files moved, running setup.
  20. echo.
  21. p2setup
  22. if errorlevel 1 goto end
  23. if not exist temp md temp
  24. cd pel
  25. call make_ae
  26. echo.
  27. echo.
  28. echo.
  29. echo Installation is complete.
  30. echo Read the README.1ST file for information on updating your CONFIG.SYS
  31. :end
  32.