home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Backup / Backup.zip / psnsg601.zip / psnsui.cmd < prev    next >
OS/2 REXX Batch file  |  1999-10-05  |  680b  |  22 lines

  1. /* -------------------------------------------------- */
  2. /* Title:               psnsui.cmd                    */
  3. /*                                                    */
  4. /* Author:              J.Cobb                        */
  5. /*                                                    */
  6. /* Change History:      11/11/1997 - Created JAC      */
  7. /*                                                    */
  8. /* Function:            Unzips the psnsui.dll file    */
  9. /* -------------------------------------------------- */
  10.  
  11. Parse arg path
  12.  
  13. file = 'psnsui.zip'
  14. zipfile = path || '\' || file
  15.  
  16. Command = '@pkunzip2' zipfile
  17. Command
  18. Command = '@del' zipfile
  19. Command
  20. Exit
  21.  
  22.